summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/WindowsPhoneToastNotify.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-09 01:13:05 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-09 01:13:05 +0100
commite4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7 (patch)
treeac66b8d581519a1db402b41567531d8e59be264d /module/plugins/hooks/WindowsPhoneToastNotify.py
parent[SkipRev] Update (2) (diff)
downloadpyload-e4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7.tar.xz
Don't start unused periodical in some addons
Diffstat (limited to 'module/plugins/hooks/WindowsPhoneToastNotify.py')
-rw-r--r--module/plugins/hooks/WindowsPhoneToastNotify.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/module/plugins/hooks/WindowsPhoneToastNotify.py b/module/plugins/hooks/WindowsPhoneToastNotify.py
index 053ea47d0..ed305778c 100644
--- a/module/plugins/hooks/WindowsPhoneToastNotify.py
+++ b/module/plugins/hooks/WindowsPhoneToastNotify.py
@@ -9,7 +9,7 @@ from module.plugins.Hook import Hook
class WindowsPhoneToastNotify(Hook):
__name__ = "WindowsPhoneToastNotify"
__type__ = "hook"
- __version__ = "0.02"
+ __version__ = "0.03"
__config__ = [("force", "bool", "Force even if client is connected", False),
("pushId", "str", "pushId", ""),
@@ -21,6 +21,11 @@ class WindowsPhoneToastNotify(Hook):
__authors__ = [("Andy Voigt", "phone-support@hotmail.de")]
+ #@TODO: Remove in 0.4.10
+ def initPeriodical(self):
+ pass
+
+
def setup(self):
self.info = {} #@TODO: Remove in 0.4.10