From 77a0f6adbd005f68fd2afe9c39b8c0f146c0fdb7 Mon Sep 17 00:00:00 2001 From: Makario1337 <74052988+Makario1337@users.noreply.github.com> Date: Fri, 9 Dec 2022 21:37:49 +0100 Subject: [PATCH] Make Webhook silent --- root/scripts/Audio.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/scripts/Audio.sh b/root/scripts/Audio.sh index d8fcbde..984d81d 100644 --- a/root/scripts/Audio.sh +++ b/root/scripts/Audio.sh @@ -1913,7 +1913,7 @@ NotifyWebhook () { if [ "$webHook" ] then content="$1: $2" - curl -X POST "{$webHook}" -H 'Content-Type: application/json' -d '{"event":"'"$1"'", "message":"'"$2"'", "content":"'"$content"'"}' + curl -s -X POST "{$webHook}" -H 'Content-Type: application/json' -d '{"event":"'"$1"'", "message":"'"$2"'", "content":"'"$content"'"}' fi }