diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-12-29 13:28:16 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-12-29 13:28:16 +0100 |
commit | 02a12fe304da59c6a68071af0c8587270870803d (patch) | |
tree | fc5f0c147772ab20ff114f305ce960772f8a163b /module/plugins/hoster | |
parent | fixed accounts (diff) | |
download | pyload-02a12fe304da59c6a68071af0c8587270870803d.tar.xz |
better cleanup
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/MegauploadCom.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/plugins/hoster/MegauploadCom.py b/module/plugins/hoster/MegauploadCom.py index 23ddbadb0..e67237af2 100644 --- a/module/plugins/hoster/MegauploadCom.py +++ b/module/plugins/hoster/MegauploadCom.py @@ -59,9 +59,10 @@ class MegauploadCom(Hoster): if self.account: self.premium = self.account.getAccountInfo(self.user)["premium"] - if self.premium: - self.multiDL = True - self.req.canContinue = True + if not self.premium: + self.multiDL = False + self.resumeDownload = False + self.chunkLimit = 1 else: self.multiDL = False self.api = {} |