From 99a6de0cdb13c5506903fb4b98e7906fb32d4d9c Mon Sep 17 00:00:00 2001 From: Rory& Date: Mon, 13 Apr 2026 23:24:24 +0200 Subject: [PATCH] Explicitly specify status for temp sessions, since that suddenly broke...? --- src/gateway/opcodes/Identify.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts index 8939f821a..23b0353f7 100644 --- a/src/gateway/opcodes/Identify.ts +++ b/src/gateway/opcodes/Identify.ts @@ -134,6 +134,7 @@ export async function onIdentify(this: WebSocket, data: Payload) { session: Session.create({ user_id: this.user_id, session_id: this.session_id, + status: "offline", // ??? why wasnt this required before }), isNewSession: true, };