diff options
| author | 2013-07-12 10:50:38 +0200 | |
|---|---|---|
| committer | 2013-07-12 10:50:38 +0200 | |
| commit | 9cd52e24fed75927f5d5aec6663cb33e89ee478c (patch) | |
| tree | 5a48650bed065277fc47261a88ca622bf12c55fb /module/plugins/hoster | |
| parent | New crypter requested in #186 (diff) | |
| parent | Fixed chunkLimit value (diff) | |
| download | pyload-9cd52e24fed75927f5d5aec6663cb33e89ee478c.tar.xz | |
Merge pull request #193 from vuolter/plugin/UnrestrictLi
Plugin UnrestrictLi: Fix 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): | 
