summary refs log tree commit diff
path: root/src/util/WebSocket.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 18:02:00 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 18:02:00 +0200
commit727672470215d9b03f0e668a98dea45f8edbb7d0 (patch)
tree69322efbe1b3de938bb54fd83f3d96c79913a269 /src/util/WebSocket.ts
parent:bug: fix hearbeat gateway (diff)
downloadserver-727672470215d9b03f0e668a98dea45f8edbb7d0.tar.xz
:art: Convert id bigint to string
Diffstat (limited to 'src/util/WebSocket.ts')
-rw-r--r--src/util/WebSocket.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/WebSocket.ts b/src/util/WebSocket.ts

index 4f866ad5..566fc3aa 100644 --- a/src/util/WebSocket.ts +++ b/src/util/WebSocket.ts
@@ -4,7 +4,7 @@ import { Deflate } from "zlib"; interface WebSocket extends WS { version: number; - user_id: bigint; + user_id: string; encoding: "etf" | "json"; compress?: "zlib-stream"; deflate?: Deflate;