1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 02:42:37 +01:00

/channel/:id/messages/:id/ack responds with { token: null } on discord.com

This commit is contained in:
Madeline 2022-07-13 20:30:13 +10:00
parent a1a4fb3b74
commit f5943cec8d
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -35,7 +35,7 @@ router.post("/", route({ body: "MessageAcknowledgeSchema" }), async (req: Reques
}
} as MessageAckEvent);
res.sendStatus(204);
res.json({ token: null });
});
export default router;