Browse Source

Don't add event to prowl notification

pull/62/head
Ruud 14 years ago
parent
commit
eafce4436e
  1. 3
      couchpotato/core/plugins/updater/main.py

3
couchpotato/core/plugins/updater/main.py

@ -78,7 +78,8 @@ class Updater(Plugin):
self.doUpdate()
else:
self.update_version = remote.hash
fireEvent('updater.available', message = 'A new update is available', data = self.getVersion())
if self.conf('notification'):
fireEvent('updater.available', message = 'A new update is available', data = self.getVersion())
self.last_check = time.time()

Loading…
Cancel
Save