🐛 only delete session id for authenticated connections
This commit is contained in:
parent
48036bdad5
commit
c45e1b0f10
@ -4,7 +4,7 @@ import { Session } from "@fosscord/util";
|
||||
|
||||
export async function Close(this: WebSocket, code: number, reason: string) {
|
||||
console.log("[WebSocket] closed", code, reason);
|
||||
await Session.delete({ session_id: this.session_id });
|
||||
if (this.session_id) await Session.delete({ session_id: this.session_id });
|
||||
// @ts-ignore
|
||||
this.off("message", Message);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user