diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-06 22:24:17 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-06 22:24:17 +0200 |
commit | cac52bbf8b0e928a83a29b744bff20240c8e7354 (patch) | |
tree | b53689d1269f95dfda758879e7206d1c20cb5012 /module/plugins/Plugin.py | |
parent | closed #147 (diff) | |
download | pyload-cac52bbf8b0e928a83a29b744bff20240c8e7354.tar.xz |
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 2b2ee2414..55faa37e1 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -121,7 +121,9 @@ class Plugin(object): """ handles important things to do before starting """ self.thread = thread - if not self.account: + if self.account: + self.multiDL = True #every hoster with account should provides multiple downloads + else: self.req.clearCookies() if self.core.config["proxy"]["activated"]: |