chore: changing ping pong method

This commit is contained in:
Chubby Granny Chaser
2025-05-24 20:30:46 +01:00
parent 7f988c0bba
commit 7a196e4315

View File

@@ -112,7 +112,7 @@ export class WSClient {
private static startHeartbeat() {
this.heartbeatInterval = setInterval(() => {
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
this.ws.ping();
this.ws.send("PING");
}
}, 15_000);
}