mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
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:
parent
126c9c02a8
commit
e3790b299f
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ module.exports = CompileController = {
|
|||
}
|
||||
// add any provided query string
|
||||
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 (
|
||||
|
|
Loading…
Reference in a new issue