diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index 5de1df245..9d7678baf 100644 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -10,10 +10,8 @@ if ! command -v jq > /dev/null; then fn_script_log_fatal "Sending Discord alert: jq is missing." fi -EscapedServername="$(echo -n "${servername}" | jq -sRr "@json")" -EscapedAlertBody="$(echo -n "${alertbody}" | jq -sRr "@json")" - -echo "$servername" > /tmp/servername +escaped_servername="$(echo -n "${servername}" | jq -sRr "@json")" +escaped_alertbody="$(echo -n "${alertbody}" | jq -sRr "@json")" json=$(cat < /tmp/json - -discordsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d "${minified}" "${discordwebhook}") +discordsend=$(${curlpath} -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}"