diff --git a/host.js b/host.js index 3bf0d69..ee5770b 100644 --- a/host.js +++ b/host.js @@ -61,11 +61,11 @@ export const hostPage = () => { app.post("/webhook", async (req, res) => { if (JSON.stringify(req.body).includes("No player-facing changes")) { - return; + return res.status(204).send(); } if (req.body.action != "published") { - return; + return res.status(204).send(); } const discordBody = convert(req.body);