it ain't async

This commit is contained in:
MathMan05
2026-02-26 14:52:04 -06:00
committed by Rory&
parent 2ff656ef03
commit c718da5e98
3 changed files with 8 additions and 10 deletions
@@ -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));
},
);