mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 16:05:54 +00:00
Merge pull request #2723 from overleaf/jpa-fix-scope-in-error-handler
[misc] frontend: ide error reporting handler: fix scoping for socket GitOrigin-RevId: bd9d169191bdf1b6b50805e9564cf50851ad3279
This commit is contained in:
parent
d6bd911a6e
commit
92fb6b2f2d
1 changed files with 2 additions and 2 deletions
|
@ -50,12 +50,12 @@ define(['../../base'], function(App) {
|
|||
meta.user_id = window.user_id
|
||||
meta.project_id = window.project_id
|
||||
meta.client_id = __guard__(
|
||||
this.socket != null ? this.socket.socket : undefined,
|
||||
ide.socket != null ? ide.socket.socket : undefined,
|
||||
x => x.sessionid
|
||||
)
|
||||
meta.transport = __guard__(
|
||||
__guard__(
|
||||
this.socket != null ? this.socket.socket : undefined,
|
||||
ide.socket != null ? ide.socket.socket : undefined,
|
||||
x2 => x2.transport
|
||||
),
|
||||
x1 => x1.name
|
||||
|
|
Loading…
Reference in a new issue