summary refs log tree commit diff
path: root/src/api
diff options
context:
space:
mode:
authorMathMan05 <mathmanrm@gmail.com>2026-02-26 14:52:04 -0600
committerRory& <root@rory.gay>2026-03-20 16:31:32 +0100
commitc718da5e9898983379d2e3e081f5598fda17614a (patch)
tree492b015522ec1e3cf9f8cef946671b77f0412073 /src/api
parentsign 'em (diff)
downloadserver-ts-c718da5e9898983379d2e3e081f5598fda17614a.tar.xz
it ain't async
Diffstat (limited to 'src/api')
-rw-r--r--src/api/routes/channels/#channel_id/messages/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/channels/#channel_id/messages/index.ts b/src/api/routes/channels/#channel_id/messages/index.ts

index f842a3a5..ded8642a 100644 --- a/src/api/routes/channels/#channel_id/messages/index.ts +++ b/src/api/routes/channels/#channel_id/messages/index.ts
@@ -506,7 +506,7 @@ router.post( ip: req.ip, userAgent: req.headers["user-agent"] as string, }); - return res.json(await Message.prototype.withSignedComponents.call(message.withSignedAttachments(sign), sign)); + return res.json(Message.prototype.withSignedComponents.call(message.withSignedAttachments(sign), sign)); }, );