diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-07-12 01:14:18 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-07-12 01:14:18 +0200 |
commit | 492884419f8d58a561b14767e205724400f93901 (patch) | |
tree | 5a48650bed065277fc47261a88ca622bf12c55fb /module/plugins/hoster | |
parent | New crypter requested in #186 (diff) | |
download | pyload-492884419f8d58a561b14767e205724400f93901.tar.xz |
Fixed chunkLimit value
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/UnrestrictLi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UnrestrictLi.py b/module/plugins/hoster/UnrestrictLi.py index e866a9269..084c2beff 100644 --- a/module/plugins/hoster/UnrestrictLi.py +++ b/module/plugins/hoster/UnrestrictLi.py @@ -35,7 +35,7 @@ def secondsToMidnight(): class UnrestrictLi(Hoster): __name__ = "UnrestrictLi" - __version__ = "0.03" + __version__ = "0.04" __type__ = "hoster" __pattern__ = r"https?://.*(unrestrict|unr)\.li" __description__ = """Unrestrict.li hoster plugin""" @@ -43,7 +43,7 @@ class UnrestrictLi(Hoster): __author_mail__ = ("l.stickell@yahoo.it") def init(self): - self.chunkLimit = -1 + self.chunkLimit = 16 self.resumeDownload = True def process(self, pyfile): |