Browse Source

Added 'lowest' and 'low' priorities

Added 'lowest' and 'low' priorities for notifications as documented here: https://pushover.net/api#priority
pull/4773/head
perrin7 10 years ago
parent
commit
e53d2a55c5
  1. 2
      couchpotato/core/notifications/pushover.py

2
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',

Loading…
Cancel
Save