mirror of
https://github.com/cdr/code-server.git
synced 2026-05-08 12:30:40 +02:00
fix: update WebSocketNodeSocket in protocol
This commit is contained in:
parent
22e7173fa9
commit
52acb50ed7
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ export class Protocol extends PersistentProtocol {
|
||||||
super(
|
super(
|
||||||
options.skipWebSocketFrames
|
options.skipWebSocketFrames
|
||||||
? new NodeSocket(socket)
|
? new NodeSocket(socket)
|
||||||
: new WebSocketNodeSocket(new NodeSocket(socket)),
|
: new WebSocketNodeSocket(new NodeSocket(socket), false, null, false),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue