diff options
Diffstat (limited to 'module/plugins/hooks/WindowsPhoneNotify.py')
-rw-r--r-- | module/plugins/hooks/WindowsPhoneNotify.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/WindowsPhoneNotify.py b/module/plugins/hooks/WindowsPhoneNotify.py index 97e3b6da4..86a5f2308 100644 --- a/module/plugins/hooks/WindowsPhoneNotify.py +++ b/module/plugins/hooks/WindowsPhoneNotify.py @@ -47,11 +47,11 @@ class WindowsPhoneNotify(Hook): self.notify(_("Plugins updated"), str(type_plugins)) - def coreReady(self): + def activate(self): self.key = (self.getConfig('push-id'), self.getConfig('push-url')) - def coreExiting(self): + def exit(self): if not self.getConfig('notifyexit'): return |