mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #2718 from overleaf/jpa-custom-wsurl-for-beta-users
[frontend] ConnectionManager: fix dumb string concat in socket.io v0 GitOrigin-RevId: a1c472623e07b020e498d621e9f3241f8afc44f6
This commit is contained in:
parent
155b22caf9
commit
d6fa1b1ca3
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ define([], function() {
|
||||||
this.ide.socket = io.connect(
|
this.ide.socket = io.connect(
|
||||||
parsedURL.origin,
|
parsedURL.origin,
|
||||||
{
|
{
|
||||||
resource: parsedURL.pathname,
|
resource: parsedURL.pathname.slice(1),
|
||||||
reconnect: false,
|
reconnect: false,
|
||||||
'connect timeout': 30 * 1000,
|
'connect timeout': 30 * 1000,
|
||||||
'force new connection': true
|
'force new connection': true
|
||||||
|
|
Loading…
Reference in a new issue