blob: 1299ad5c5819937631ceb76882264aef4407db15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { WebSocket } from "@fosscord/gateway";
import { Message } from "./Message";
import { Session } from "@fosscord/util";
export async function Close(this: WebSocket, code: number, reason: string) {
console.log("[WebSocket] closed", code, reason);
if (this.session_id) await Session.delete({ session_id: this.session_id });
// @ts-ignore
this.off("message", Message);
}
|