Cleaned the message from pings.

This commit is contained in:
GameKuchen 2023-01-13 18:16:39 +01:00
parent 1aba2be026
commit 36931aadd9
1 changed files with 1 additions and 1 deletions

2
app.js
View File

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