mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
Merge pull request #2329 from overleaf/bg-fix-exception-in-exports-handler
avoid exception when rootDoc is null GitOrigin-RevId: caf37a78ef35285cf638322f943696aeceb10da6
This commit is contained in:
@@ -111,7 +111,7 @@ module.exports = ExportsHandler = self = {
|
||||
}
|
||||
|
||||
const { project, rootDoc, user, historyVersion } = results
|
||||
if (rootDoc[1] == null) {
|
||||
if (!rootDoc || rootDoc[1] == null) {
|
||||
err = new Error('cannot export project without root doc')
|
||||
logger.warn({ err, project_id })
|
||||
return callback(err)
|
||||
|
||||
Reference in New Issue
Block a user