diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-18 17:21:20 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-18 17:21:20 +0200 |
commit | af1f50acff5cb356db104d1d962179096c30929b (patch) | |
tree | 12ee1f5c6be6c8f2e4cff62b56c0d9da9c499817 /module/plugins/hoster/TusfilesNet.py | |
parent | [OneFichierCom] Fix handle_premium routine (diff) | |
download | pyload-af1f50acff5cb356db104d1d962179096c30929b.tar.xz |
[TusfilesNet] Limit to two simultaneous downloads
Diffstat (limited to 'module/plugins/hoster/TusfilesNet.py')
-rw-r--r-- | module/plugins/hoster/TusfilesNet.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hoster/TusfilesNet.py b/module/plugins/hoster/TusfilesNet.py index 74c402a6d..50a6f87ec 100644 --- a/module/plugins/hoster/TusfilesNet.py +++ b/module/plugins/hoster/TusfilesNet.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class TusfilesNet(XFSHoster): __name__ = "TusfilesNet" __type__ = "hoster" - __version__ = "0.12" + __version__ = "0.13" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?tusfiles\.net/\w{12}' @@ -25,7 +25,8 @@ class TusfilesNet(XFSHoster): def setup(self): self.chunk_limit = -1 - self.multiDL = True + self.multiDL = True + self.limitDL = 2 self.resume_download = True |