mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-26 13:07:34 +00:00
🐛 fix null user in identify
This commit is contained in:
@@ -210,7 +210,7 @@ export async function onIdentify(this: WebSocket, data: Payload) {
|
||||
// @ts-ignore
|
||||
experiments: experiments, // TODO
|
||||
guild_join_requests: [], // TODO what is this?
|
||||
users: users.unique(),
|
||||
users: users.filter((x) => x).unique(),
|
||||
merged_members: merged_members,
|
||||
// shard // TODO: only for bots sharding
|
||||
// application // TODO for applications
|
||||
|
||||
Reference in New Issue
Block a user