From 36931aadd965f4140cfd5993878fea0297db9dfe Mon Sep 17 00:00:00 2001 From: GameKuchen <49527417+GameKuchen@users.noreply.github.com> Date: Fri, 13 Jan 2023 18:16:39 +0100 Subject: [PATCH] Cleaned the message from pings. --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 2607e4d..5d774c4 100644 --- a/app.js +++ b/app.js @@ -28,7 +28,7 @@ setInterval(function() { const json = JSON.parse(body); if (currentStatus !== json.state.open) { currentStatus = json.state.open; - hook.send(`<@286015596875874305> ChCh ist jetzt ${currentStatusRead(currentStatus)}`); + hook.send(`ChCh ist jetzt ${currentStatusRead(currentStatus)}`); console.log(json.state.open); } })