Fix starting plugins when the pluginmanager is started
This commit is contained in:
parent
566d3c5ebf
commit
b77e846744
|
@ -74,6 +74,8 @@ class PluginManager(deluge.pluginmanagerbase.PluginManagerBase,
|
||||||
"""Start the plugin manager"""
|
"""Start the plugin manager"""
|
||||||
# Update the enabled_plugins from the core
|
# Update the enabled_plugins from the core
|
||||||
client.core.get_enabled_plugins().addCallback(self._on_get_enabled_plugins)
|
client.core.get_enabled_plugins().addCallback(self._on_get_enabled_plugins)
|
||||||
|
for instance in self.plugins.values():
|
||||||
|
component.start(instance.plugin.get_component_name())
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
# Disable the plugins
|
# Disable the plugins
|
||||||
|
|
Loading…
Reference in New Issue