Browse Source

fixed error detection

pull/1601/head
Daniel Gibbs 8 years ago
parent
commit
c20a862b5d
  1. 2
      lgsm/functions/alert_telegram.sh

2
lgsm/functions/alert_telegram.sh

@ -19,7 +19,7 @@ EOF
fn_print_dots "Sending Telegram alert"
sleep 0.5
telegramsend=$(curl -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://api.telegram.org/bot${telegramtoken}/sendMessage")
telegramsend=$(curl -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://api.telegram.org/bot${telegramtoken}/sendMessage" | grep "error_code")
if [ -n "${telegramsend}" ]; then
fn_print_fail_nl "Sending Telegram alert: ${telegramsend}"

Loading…
Cancel
Save