diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-16 21:40:14 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-16 21:40:14 +0200 |
commit | 19864fa7dadf47837b9149f0356c59b393cee754 (patch) | |
tree | 86ba66699d801d84942607224efaaedcb23f6077 /module | |
parent | account login timeout, better shutdown (diff) | |
download | pyload-19864fa7dadf47837b9149f0356c59b393cee754.tar.xz |
fixes last commit
Diffstat (limited to 'module')
-rw-r--r-- | module/PluginThread.py | 2 | ||||
-rw-r--r-- | module/plugins/Plugin.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py index 33cb0b3d1..3a6483f95 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -143,7 +143,7 @@ class DownloadThread(PluginThread): try: - pyfile.plugin.checkForOtherHoster() + pyfile.plugin.checkForSameFiles() self.m.log.info(_("Download starts: %s" % pyfile.name)) # start download diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 1c5061432..dcf141dd4 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -137,7 +137,7 @@ class Plugin(object): self.thread = thread if self.account: - self.account.checkLogin() + self.account.checkLogin(self.user) else: self.req.clearCookies() |