From 9fb6e69d76008e4a366bf4110b3ba40107beb876 Mon Sep 17 00:00:00 2001 From: diamondburned Date: Fri, 26 Oct 2018 11:45:33 -0700 Subject: [PATCH] Minor changes to fit merge requirements --- lgsm/functions/alert_discord.sh | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) 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}"