diff options
Diffstat (limited to 'module/thread_list.py')
-rw-r--r-- | module/thread_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/thread_list.py b/module/thread_list.py index 52d06aae4..6a42898be 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -149,7 +149,7 @@ class Thread_List(object): def init_reconnect(self): """initialise a reonnect""" - if not self.parent.config['general']['use_reconnect'] or self.reconnecting or not self.parent.is_reconnect_time(): + if not self.parent.config['general']['use_reconnect'] or self.reconnecting or not self.parent.server_methods.is_time_reconnect(): return False if not exists(self.parent.config['general']['reconnect_method']): |