From 468e59024941caf224409f093009997f1d11b517 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 16 Oct 2021 00:19:10 +0200 Subject: :bug: fix #450 (only if user is a bot application) --- gateway/src/opcodes/Identify.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gateway') diff --git a/gateway/src/opcodes/Identify.ts b/gateway/src/opcodes/Identify.ts index 2f9d4632..88b514b2 100644 --- a/gateway/src/opcodes/Identify.ts +++ b/gateway/src/opcodes/Identify.ts @@ -12,6 +12,7 @@ import { PublicUser, PrivateUserProjection, ReadState, + Application, } from "@fosscord/util"; import { Send } from "../util/Send"; import { CLOSECODES, OPCODES } from "../util/Constants"; @@ -171,6 +172,7 @@ export async function onIdentify(this: WebSocket, data: Payload) { const d: ReadyEventData = { v: 8, + application: await Application.findOne({ id: this.user_id }), user: privateUser, user_settings: user.settings, // @ts-ignore @@ -213,7 +215,6 @@ export async function onIdentify(this: WebSocket, data: Payload) { users: users.filter((x) => x).unique(), merged_members: merged_members, // shard // TODO: only for bots sharding - // application // TODO for applications }; // TODO: send real proper data structure -- cgit 1.4.1