From d98d1af726368eb956a48118e0e82536ef13a513 Mon Sep 17 00:00:00 2001 From: Daniel Kearns Date: Mon, 17 Jun 2019 11:07:59 +0100 Subject: [PATCH] word wrap error --- notify/pushover.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notify/pushover.sh b/notify/pushover.sh index cc8ee274..6d991e25 100644 --- a/notify/pushover.sh +++ b/notify/pushover.sh @@ -50,7 +50,7 @@ pushover_send() { export _H1="Content-Type: application/json" _content="$(printf "*%s*\n" "$_content" | _json_encode)" _subject="$(printf "*%s*\n" "$_subject" | _json_encode)" - _data="{\"token\": \"$PUSHOVER_TOKEN\",\"user\": \"$PUSHOVER_USER\",\"title\": \"$_subject\",\"message\": \"$_content\",\"sound\": \"$PUSHOVER_SOUND\", \"$ + _data="{\"token\": \"$PUSHOVER_TOKEN\",\"user\": \"$PUSHOVER_USER\",\"title\": \"$_subject\",\"message\": \"$_content\",\"sound\": \"$PUSHOVER_SOUND\", \"device\": \"$PUSHOVER_DEVICE\", \"priority\": \"$PUSHOVER_PRIORITY\"}" response="" #just make shellcheck happy if _post "$_data" "$PUSHOVER_URI"; then