From 2c69e1cb41b957a5df754b85439916073c39d0aa Mon Sep 17 00:00:00 2001 From: MARCROCK22 Date: Sat, 3 Aug 2024 00:06:44 +0000 Subject: [PATCH] fix: unused properties --- src/websocket/discord/basesocket.ts | 2 +- src/websocket/discord/socket/custom.ts | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/websocket/discord/basesocket.ts b/src/websocket/discord/basesocket.ts index 738404a..fc0ff83 100644 --- a/src/websocket/discord/basesocket.ts +++ b/src/websocket/discord/basesocket.ts @@ -14,7 +14,7 @@ export class BaseSocket { this.ping = ws.waitPing.bind(ws); ws.onpong = data => { const promise = ws.__promises.get(data); - if (data) { + if (promise) { ws.__promises.delete(data); promise?.resolve(); } diff --git a/src/websocket/discord/socket/custom.ts b/src/websocket/discord/socket/custom.ts index e10937d..83b641d 100644 --- a/src/websocket/discord/socket/custom.ts +++ b/src/websocket/discord/socket/custom.ts @@ -1,7 +1,7 @@ import { randomBytes, createHash, randomUUID } from 'node:crypto'; import { request } from 'node:https'; import type { Socket } from 'node:net'; -import { createInflate, inflateSync } from 'node:zlib'; +import { inflateSync } from 'node:zlib'; export class SeyfertWebSocket { socket?: Socket = undefined; @@ -9,7 +9,6 @@ export class SeyfertWebSocket { path: string; __stored: Buffer[] = []; __opcode = 0; - __body: Buffer[] = []; __promises = new Map< string, { @@ -17,7 +16,6 @@ export class SeyfertWebSocket { reject: (reason?: any) => void; } >(); - __zlib?: ReturnType; constructor( url: string, @@ -26,9 +24,6 @@ export class SeyfertWebSocket { const urlParts = new URL(url); this.hostname = urlParts.hostname || ''; this.path = `${urlParts.pathname}${urlParts.search || ''}&encoding=json`; - if (compress) { - this.__zlib = createInflate(); - } this.connect(); }