diff options
Diffstat (limited to 'module/ThreadManager.py')
-rw-r--r-- | module/ThreadManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/ThreadManager.py b/module/ThreadManager.py index adf17ee8c..a0025879c 100644 --- a/module/ThreadManager.py +++ b/module/ThreadManager.py @@ -114,7 +114,7 @@ class ThreadManager: def tryReconnect(self): """checks if reconnect needed""" - if not (self.core.config["reconnect"]["activated"] and self.core.server_methods.is_time_reconnect()): + if not (self.core.config["reconnect"]["activated"] and self.core.api.isTimeReconnect()): return False active = [x.active.plugin.wantReconnect and x.active.plugin.waiting for x in self.threads if x.active] @@ -209,7 +209,7 @@ class ThreadManager: def assignJob(self): """assing a job to a thread if possible""" - if self.pause or not self.core.server_methods.is_time_download(): return + if self.pause or not self.core.api.isTimeDownload(): return #if self.downloaded > 20: # if not self.cleanPyCurl(): return |