From af1f50acff5cb356db104d1d962179096c30929b Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sun, 18 Oct 2015 17:21:20 +0200 Subject: [TusfilesNet] Limit to two simultaneous downloads --- module/plugins/hoster/TusfilesNet.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'module') 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 -- cgit v1.2.3