summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-02 21:19:52 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-02 21:19:59 +1000
commit27ec60b9fa14ec61e404fed1aff5dfc514110948 (patch)
tree8f49975393288628af9fec639ffb2e200ce52987
parent...try again (diff)
downloadserver-27ec60b9fa14ec61e404fed1aff5dfc514110948.tar.xz
...and again
-rw-r--r--api/src/routes/channels/#channel_id/messages/index.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/api/src/routes/channels/#channel_id/messages/index.ts b/api/src/routes/channels/#channel_id/messages/index.ts

index 1faf9a3b..3c014f5c 100644 --- a/api/src/routes/channels/#channel_id/messages/index.ts +++ b/api/src/routes/channels/#channel_id/messages/index.ts
@@ -106,8 +106,7 @@ router.get("/", async (req: Request, res: Response) => { order: { timestamp: "DESC" }, take: limit, where: { channel_id }, - relations: ["author", "webhook", "application", "mentions", "mention_roles", "mention_channels", "sticker_items", "attachments"], - loadRelationIds: true, + relations: ["author", "webhook", "application", "mentions", "mention_roles", "mention_channels", "sticker_items", "attachments"] }; if (after) { @@ -124,7 +123,7 @@ router.get("/", async (req: Request, res: Response) => { LessThan((BigInt(around) + BigInt(halfLimit)).toString()) ]; - return res.json([]); + return res.json([]); // TODO: fix around } const messages = await Message.find(query);