summary refs log tree commit diff
path: root/api/src/routes/channels
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-09 14:09:50 +0200
committerGitHub <noreply@github.com>2021-10-09 14:09:50 +0200
commitd8733131b5aeca59a7c60ceb3b57b024190b512c (patch)
treedcabe6e4296a8cf3bd2f98991c4919b4cec99379 /api/src/routes/channels
parentMerge pull request #428 from fosscord/dev (diff)
parent:bug: fix typing (diff)
downloadserver-d8733131b5aeca59a7c60ceb3b57b024190b512c.tar.xz
Merge pull request #429 from fosscord/dev
:bug: fix typing
Diffstat (limited to 'api/src/routes/channels')
-rw-r--r--api/src/routes/channels/#channel_id/typing.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/channels/#channel_id/typing.ts b/api/src/routes/channels/#channel_id/typing.ts

index a9dcb315..45ed76db 100644 --- a/api/src/routes/channels/#channel_id/typing.ts +++ b/api/src/routes/channels/#channel_id/typing.ts
@@ -9,7 +9,7 @@ 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"] }); + const member = await Member.findOneOrFail({ where: { id: user_id }, relations: ["roles", "user"] }); await emitEvent({ event: "TYPING_START",