diff options
Diffstat (limited to 'module/plugins/hoster/BasePlugin.py')
-rw-r--r-- | module/plugins/hoster/BasePlugin.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hoster/BasePlugin.py b/module/plugins/hoster/BasePlugin.py index 172b8899c..4f9e25a35 100644 --- a/module/plugins/hoster/BasePlugin.py +++ b/module/plugins/hoster/BasePlugin.py @@ -13,7 +13,7 @@ from module.plugins.Hoster import Hoster class BasePlugin(Hoster): __name__ = "BasePlugin" __type__ = "hoster" - __version__ = "0.32" + __version__ = "0.33" __pattern__ = r'^unmatchable$' @@ -36,6 +36,7 @@ class BasePlugin(Hoster): def setup(self): self.chunkLimit = -1 + self.multiDL = True self.resumeDownload = True @@ -52,7 +53,7 @@ class BasePlugin(Hoster): link = fileUrl(self, unquote(pyfile.url)) if link: - self.download(link, disposition=True) + self.download(link, ref=False, disposition=True) else: self.fail(_("File not found")) |