1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 11:32:20 -05:00

Merge pull request #122 from bjtaylor93/growl-update-registration

Fix growl registration not sending sickrage update notification registration
This commit is contained in:
adam111316 2014-11-08 21:18:54 +08:00
commit 7dfad34f5a
2 changed files with 3 additions and 1 deletions

View File

@ -47,6 +47,7 @@
* Add handler for when Trakt returns no results for Add Show/Add Trending Show page * Add handler for when Trakt returns no results for Add Show/Add Trending Show page
* Fix image links when anchor child images are not found at Trakt on Add Show/Add Trending Show page * Fix image links when anchor child images are not found at Trakt on Add Show/Add Trending Show page
* Add image to be used when Trakt posters are void on Add Show/Add Trending Show page * Add image to be used when Trakt posters are void on Add Show/Add Trending Show page
* Fix growl registration not sending sickrage update notification registration.
[develop changelog] [develop changelog]
* Change improve display of progress bars in the Downloads columns of the show list page * Change improve display of progress bars in the Downloads columns of the show list page

View File

@ -179,7 +179,8 @@ class GrowlNotifier:
register.add_notification('Test', True) register.add_notification('Test', True)
register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True) register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True)
register.add_notification(common.notifyStrings[common.NOTIFY_DOWNLOAD], True) register.add_notification(common.notifyStrings[common.NOTIFY_DOWNLOAD], True)
register.add_notification(common.notifyStrings[common.NOTIFY_GIT_UPDATE], True)
if opts['password']: if opts['password']:
register.set_password(opts['password']) register.set_password(opts['password'])