mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fixed NPE when Settings.clsi is defined but Settings.clsi.docker is not
This commit is contained in:
parent
2b342c6e53
commit
f8ca906393
1 changed files with 3 additions and 1 deletions
|
@ -520,7 +520,9 @@ module.exports = CompileManager = {
|
|||
compileName,
|
||||
command,
|
||||
directory,
|
||||
Settings.clsi != null ? Settings.clsi.docker.image : undefined,
|
||||
Settings.clsi && Settings.clsi.docker
|
||||
? Settings.clsi.docker.image
|
||||
: undefined,
|
||||
timeout,
|
||||
{},
|
||||
compileGroup,
|
||||
|
|
Loading…
Reference in a new issue