blob: 2f274ec4c017ff1afe0790b0dd39a7149e0d4091 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import WebSocket from "../util/WebSocket";
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);
}
|