diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-04 17:59:29 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-04 17:59:29 +0200 |
commit | 0bf59ee28adc81b2b91585f1bdd1ae1cb951e6b1 (patch) | |
tree | 569cc4048efd952ed6a1b30cec5240c8e9c55a6c /gateway | |
parent | :bug: fix release (diff) | |
download | server-0bf59ee28adc81b2b91585f1bdd1ae1cb951e6b1.tar.xz |
:arrow_up: update test client
Diffstat (limited to 'gateway')
-rw-r--r-- | gateway/src/opcodes/Identify.ts | 4 | ||||
-rw-r--r-- | gateway/src/schema/Identify.ts | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gateway/src/opcodes/Identify.ts b/gateway/src/opcodes/Identify.ts index adfd98da..95db7f3d 100644 --- a/gateway/src/opcodes/Identify.ts +++ b/gateway/src/opcodes/Identify.ts @@ -147,7 +147,9 @@ export async function onIdentify(this: WebSocket, data: Payload) { // @ts-ignore guilds: guilds.map((x) => { // @ts-ignore - x.guild_hashes = {}; + x.guild_hashes = {}; // @ts-ignore + x.guild_scheduled_events = []; // @ts-ignore + x.threads = []; return x; }), guild_experiments: [], // TODO diff --git a/gateway/src/schema/Identify.ts b/gateway/src/schema/Identify.ts index cbd6630a..0835ddc7 100644 --- a/gateway/src/schema/Identify.ts +++ b/gateway/src/schema/Identify.ts @@ -5,7 +5,7 @@ export const IdentifySchema = { $intents: BigInt, // discord uses a Integer for bitfields we use bigints tho. | instanceOf will automatically convert the Number to a BigInt $properties: Object, // { - // // bruh discord really uses $ in the property key for bots, so we need to double prefix it, because instanceOf treats $ (prefix) as a optional key + // // discord uses $ in the property key for bots, so we need to double prefix it, because instanceOf treats $ (prefix) as a optional key // $os: String, // $os_arch: String, // $browser: String, |