summaryrefslogtreecommitdiffstats
path: root/module/HookManager.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/HookManager.py')
-rw-r--r--module/HookManager.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/module/HookManager.py b/module/HookManager.py
index c4e8c28a2..a6a8e4005 100644
--- a/module/HookManager.py
+++ b/module/HookManager.py
@@ -124,5 +124,11 @@ class HookManager():
if plugin.isActivated():
plugin.afterReconnecting(ip)
+ @lock
+ def unrarFinished(self, folder, fname):
+
+ for plugin in self.plugins:
+ plugin.unrarFinished(folder, fname)
+
def startThread(self, function, pyfile):
t = HookThread(self.core.threadManager, function, pyfile)