summary refs log tree commit diff
diff options
context:
space:
mode:
authorMathMan05 <mathmanrm@gmail.com>2025-11-20 14:35:06 -0600
committerMathMan05 <mathmanrm@gmail.com>2025-11-20 14:35:06 -0600
commitc0c97cb4440190d31da12a10fdbe940db7954895 (patch)
treed916dd317267f4f5e6b9efd6afa0dcd4aef69437
parentfix groups more (diff)
downloadserver-ts-c0c97cb4440190d31da12a10fdbe940db7954895.tar.xz
default undefined
-rw-r--r--src/gateway/opcodes/Identify.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts

index 7b9f107b..b8e43fba 100644 --- a/src/gateway/opcodes/Identify.ts +++ b/src/gateway/opcodes/Identify.ts
@@ -461,7 +461,7 @@ export async function onIdentify(this: WebSocket, data: Payload) { icon: channel.icon, name: channel.name, is_spam: false, // TODO - owner_id: channel.owner_id, + owner_id: channel.owner_id || undefined, }; }); const generateDmChannelsTime = taskSw.getElapsedAndReset();