From 7cd781e921cfdb84ddcbce0f48df752768746bd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= <philipp@hoerist.com> Date: Sat, 16 Feb 2019 13:04:14 +0100 Subject: [PATCH] Get module instance after checking for zeroconf --- gajim/plugins/pluginmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/plugins/pluginmanager.py b/gajim/plugins/pluginmanager.py index 506371b2ae..0161138479 100644 --- a/gajim/plugins/pluginmanager.py +++ b/gajim/plugins/pluginmanager.py @@ -406,9 +406,9 @@ class PluginManager(metaclass=Singleton): return for con in app.connections.values(): for module in plugin.modules: - instance, name = module.get_instance(con) if not module.zeroconf and con.name == 'Local': continue + instance, name = module.get_instance(con) modules.register_single(con, instance, name) # If handlers have been registered, register the -- GitLab