Merge pull request #3662 from overleaf/jpa-fix-proxying-of-clsi-requests

[CompileController] fix proxying of requests w/o clsiserverid

GitOrigin-RevId: 5c29f2f9279097f3c969e8a86ea478806b3b3eee
This commit is contained in:
Jakob Ackermann 2021-02-17 10:04:30 +00:00 committed by Copybot
parent 126c9c02a8
commit e3790b299f

View file

@ -488,7 +488,7 @@ module.exports = CompileController = {
} }
// add any provided query string // add any provided query string
if (qs != null) { if (qs != null) {
options.qs = Object.assign(options.qs, qs) options.qs = Object.assign(options.qs || {}, qs)
} }
// if we have a build parameter, pass it through to the clsi // if we have a build parameter, pass it through to the clsi
if ( if (