From e53d2a55c5904fba937ae47aadb8ae9e9d07893f Mon Sep 17 00:00:00 2001 From: perrin7 Date: Sun, 22 Mar 2015 14:41:24 +1000 Subject: [PATCH] Added 'lowest' and 'low' priorities Added 'lowest' and 'low' priorities for notifications as documented here: https://pushover.net/api#priority --- 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',