1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00

Attempt to fix message ID bug

This commit is contained in:
Madeline 2022-07-22 22:27:48 +10:00
parent 6f13b6962d
commit 9b9d7b7f3d
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -102,12 +102,11 @@ router.get("/", async (req: Request, res: Response) => {
if (!permissions.has("READ_MESSAGE_HISTORY")) return res.json([]);
var query: FindManyOptions<Message> & { where: { id?: any; }; } = {
order: { id: "DESC" },
order: { timestamp: "DESC" },
take: limit,
where: { channel_id },
relations: ["author", "webhook", "application", "mentions", "mention_roles", "mention_channels", "sticker_items", "attachments"]
};
if (after) {
if (after > new Snowflake()) return res.status(422);