From 3bb09216d0f66e38da5f52f0ffacb649773e9b72 Mon Sep 17 00:00:00 2001 From: perrin7 Date: Sun, 22 Mar 2015 14:48:27 +1000 Subject: [PATCH] Added 'lowest' and 'low' priorities for pushover notification Added 'lowest' and 'low' priorities for notifications as documented here: https://pushover.net/api#priority Tested locally and worked OK. Low gives no sound and lowest no notification. --- couchpotato/core/notifications/pushover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/pushover.py b/couchpotato/core/notifications/pushover.py index 46dc0ad..6416bfe 100644 --- a/couchpotato/core/notifications/pushover.py +++ b/couchpotato/core/notifications/pushover.py @@ -79,7 +79,7 @@ config = [{ 'name': 'priority', 'default': 0, 'type': 'dropdown', - 'values': [('Normal', 0), ('High', 1)], + 'values': [('Lowest', -2), ('Low', -1), ('Normal', 0), ('High', 1)], }, { 'name': 'on_snatch',