summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-06 02:27:23 +0100
committerRory& <root@rory.gay>2026-03-06 02:27:23 +0100
commitf8124dc2f47fc543b8eb95dff97b51a2dc31703a (patch)
treedac19423735255567717ac91f9fb581ae2e22fc3
parentactually backpropagate session id in identify to ws object (diff)
downloadserver-ts-f8124dc2f47fc543b8eb95dff97b51a2dc31703a.tar.xz
oooops
-rw-r--r--src/gateway/events/Close.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gateway/events/Close.ts b/src/gateway/events/Close.ts

index 988f17fa..8b8a2d96 100644 --- a/src/gateway/events/Close.ts +++ b/src/gateway/events/Close.ts
@@ -28,7 +28,7 @@ export async function Close(this: WebSocket, code: number, reason: Buffer) { this.removeAllListeners(); if (this.session_id) { - await Session.delete({ session_id: this.session_id }); + // await Session.delete({ session_id: this.session_id }); const voiceState = await VoiceState.findOne({ where: { user_id: this.user_id },