From 4d3d6105df18608654bbc42594723bd9f767f77d Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 18 Aug 2013 19:16:51 +0200 Subject: fixed online status fetching --- pyload/threads/InfoThread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyload/threads/InfoThread.py') diff --git a/pyload/threads/InfoThread.py b/pyload/threads/InfoThread.py index 6e685cdcf..ff77117c9 100644 --- a/pyload/threads/InfoThread.py +++ b/pyload/threads/InfoThread.py @@ -65,8 +65,8 @@ class InfoThread(BaseThread): self.m.infoResults[self.rid] = {} for pluginname, urls in plugins.iteritems(): - plugin = self.m.core.pluginManager.getPlugin(pluginname, True) - klass = getattr(plugin, pluginname) + plugin = self.m.core.pluginManager.getPluginModule(pluginname) + klass = self.m.core.pluginManager.getPluginClass(pluginname) if has_method(klass, "getInfo"): self.fetchForPlugin(pluginname, plugin, urls, self.updateResult, True) #force to process cache -- cgit v1.2.3