summary refs log tree commit diff
path: root/gateway/src/events
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-03 20:01:42 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-03 20:01:42 +0200
commitc95cd06dac7a38b07bea88211ef26efc1f4b80e5 (patch)
treef888f71a7115cbfc5c082a34de9ac811ecce02e7 /gateway/src/events
parent:zap: improve invite generation (diff)
parentMerge pull request #314 from AlTech98/master (diff)
downloadserver-ts-c95cd06dac7a38b07bea88211ef26efc1f4b80e5.tar.xz
Merge branch 'master' of https://github.com/fosscord/fosscord-api
Diffstat (limited to 'gateway/src/events')
-rw-r--r--gateway/src/events/Close.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/gateway/src/events/Close.ts b/gateway/src/events/Close.ts

index b4fed316..2f274ec4 100644 --- a/gateway/src/events/Close.ts +++ b/gateway/src/events/Close.ts
@@ -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); }