Resolves godotengine/godot-vscode-plugin#796 (#797)

This commit is contained in:
Jesse Ward
2025-02-22 09:31:57 -08:00
committed by GitHub
parent 035211276d
commit b986ce0e51

View File

@@ -49,7 +49,7 @@ export class MessageIO extends EventEmitter {
resolve();
});
socket.on("data", (chunk: Buffer) => {
this.emit("data", chunk.toString());
this.emit("data", chunk);
});
// socket.on("end", this.on_disconnected.bind(this));
socket.on("error", () => {