From 3cdf1ad9f9a75b65690c5278769c208b465c9e00 Mon Sep 17 00:00:00 2001 From: March 7th <71698422+aiko-chan-ai@users.noreply.github.com> Date: Thu, 12 Jan 2023 17:47:33 +0700 Subject: [PATCH] Update WebSocketShard.js --- src/client/websocket/WebSocketShard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/websocket/WebSocketShard.js b/src/client/websocket/WebSocketShard.js index c27f3bc..bc9109b 100644 --- a/src/client/websocket/WebSocketShard.js +++ b/src/client/websocket/WebSocketShard.js @@ -434,7 +434,7 @@ class WebSocketShard extends EventEmitter { this.resumeURL = packet.d.resume_gateway_url; this.expectedGuilds = new Set(packet.d.guilds.filter(d => d?.unavailable == true).map(d => d.id)); this.status = Status.WAITING_FOR_GUILDS; - this.debug(`[READY] Session ${this.sessionId} | ResumeURL ${this.resumeURL}.`); + this.debug(`[READY] Session ${this.sessionId} | ResumeURL ${this.resumeURL}`); this.lastHeartbeatAcked = true; this.sendHeartbeat('ReadyHeartbeat'); break;