Skip to content

Commit ca4e123

Browse files
authored
Fix missing evt parameter in websocket logic (#5470)
1 parent 1fdaf00 commit ca4e123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/scripts/plugins/Websocket.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class Websocket extends EventEmitter {
3434
this.emit('SOCKET_OPEN');
3535
this.authenticate();
3636
},
37-
onreconnect: () => {
37+
onreconnect: (evt) => {
3838
// We return code 4409 from Wings when a server is suspended. We've
3939
// gone ahead and reserved 4400 as well here for future expansion without
4040
// having to loop back around.

0 commit comments

Comments
 (0)