summary refs log tree commit diff
diff options
context:
space:
mode:
authorgreysilly7 <greysilly7@gmail.com>2024-08-17 00:59:57 -0400
committerGitHub <noreply@github.com>2024-08-17 00:59:57 -0400
commitd028a785feeae21764fcd5ca81191e364d2ef3a8 (patch)
treed2ba2bf72ab83da771b856fdb3aaafcfc81f1d7a
parentMerge pull request #1175 from DEVTomatoCake/fix/send-204-status (diff)
downloadserver-ts-d028a785feeae21764fcd5ca81191e364d2ef3a8.tar.xz
Fix: Logins Failing due to null client_status
-rw-r--r--src/gateway/opcodes/Identify.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts

index e30a1ee0..c535cd45 100644 --- a/src/gateway/opcodes/Identify.ts +++ b/src/gateway/opcodes/Identify.ts
@@ -126,6 +126,7 @@ export async function onIdentify(this: WebSocket, data: Payload) { os: identify.properties?.os || identify.properties?.$os, version: 0, }, + client_status: {}, activities: identify.presence?.activities, // TODO: validation });