diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-17 01:53:29 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-17 01:53:29 +0200 |
commit | 41e49be9b390f1aa107eb5c03fed8ebac5df0c73 (patch) | |
tree | a897f8210105e975911491343cbe10ecde11ff7b /api/src | |
parent | :bug: fix typo in custom status (diff) | |
download | server-41e49be9b390f1aa107eb5c03fed8ebac5df0c73.tar.xz |
:bug: fix typing
Diffstat (limited to 'api/src')
-rw-r--r-- | api/src/routes/channels/#channel_id/typing.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/api/src/routes/channels/#channel_id/typing.ts b/api/src/routes/channels/#channel_id/typing.ts index 45ed76db..56652368 100644 --- a/api/src/routes/channels/#channel_id/typing.ts +++ b/api/src/routes/channels/#channel_id/typing.ts @@ -9,14 +9,13 @@ router.post("/", route({ permission: "SEND_MESSAGES" }), async (req: Request, re const user_id = req.user_id; const timestamp = Date.now(); const channel = await Channel.findOneOrFail({ id: channel_id }); - const member = await Member.findOneOrFail({ where: { id: user_id }, relations: ["roles", "user"] }); + const member = await Member.findOne({ where: { id: user_id, guild_id: channel.guild_id }, relations: ["roles", "user"] }); await emitEvent({ event: "TYPING_START", channel_id: channel_id, data: { - // this is the paylod - member: { ...member, roles: member.roles?.map((x) => x.id) }, + ...(member ? { member: { ...member, roles: member?.roles?.map((x) => x.id) } } : null), channel_id, timestamp, user_id, |