🐛 fix null user in identify

This commit is contained in:
Flam3rboy 2021-10-10 14:52:16 +02:00
parent 58c3974e1b
commit a0f41b0d90

View File

@ -210,7 +210,7 @@ export async function onIdentify(this: WebSocket, data: Payload) {
// @ts-ignore // @ts-ignore
experiments: experiments, // TODO experiments: experiments, // TODO
guild_join_requests: [], // TODO what is this? guild_join_requests: [], // TODO what is this?
users: users.unique(), users: users.filter((x) => x).unique(),
merged_members: merged_members, merged_members: merged_members,
// shard // TODO: only for bots sharding // shard // TODO: only for bots sharding
// application // TODO for applications // application // TODO for applications