diamondburned пре 7 година
родитељ
комит
4a6136e9ba
1 измењених фајлова са 5 додато и 2 уклоњено
  1. 5 2
      lgsm/functions/alert_discord.sh

+ 5 - 2
lgsm/functions/alert_discord.sh

@@ -54,8 +54,11 @@ EOF
 
 fn_print_dots "Sending Discord alert"
 
-minified="$(echo -n "$json" | jq -c -M "@json")"
-discordsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d "${json}" "${discordwebhook}")
+minified="$(echo -n "$json" | jq -c .)"
+
+echo "$minified" > /tmp/json
+
+discordsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d "${minified}" "${discordwebhook}")
 
 if [ -n "${discordsend}" ]; then
     fn_print_fail_nl "Sending Discord alert: ${discordsend}"