From 52acb50ed7f6b3d086028d33951f729347d27af9 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 26 Feb 2021 12:54:29 -0700 Subject: [PATCH] fix: update WebSocketNodeSocket in protocol --- lib/vscode/src/vs/server/node/protocol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vscode/src/vs/server/node/protocol.ts b/lib/vscode/src/vs/server/node/protocol.ts index 57213f92..af9bd1d9 100644 --- a/lib/vscode/src/vs/server/node/protocol.ts +++ b/lib/vscode/src/vs/server/node/protocol.ts @@ -17,7 +17,7 @@ export class Protocol extends PersistentProtocol { super( options.skipWebSocketFrames ? new NodeSocket(socket) - : new WebSocketNodeSocket(new NodeSocket(socket)), + : new WebSocketNodeSocket(new NodeSocket(socket), false, null, false), ); }