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);
|