From b89870a51df4fd5f4ad3cc9e0bd545a3e72138dc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 19 Sep 2021 23:37:43 +0100 Subject: [PATCH] revert --- lgsm/functions/alert_discord.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index 1c34fa148..dd7537be9 100755 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -77,7 +77,7 @@ EOF fn_print_dots "Sending Discord alert" -discordsend=$(curl --connect-timeout 10 -sSL -H "Content-Type: application/json" -X POST -d "$(echo -en "${json}" | jq -c .)" "${discordwebhook}") +discordsend=$(curl --connect-timeout 10 -sSL -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)" "${discordwebhook}") if [ -n "${discordsend}" ]; then fn_print_fail_nl "Sending Discord alert: ${discordsend}"