diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-01 17:53:08 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-01 17:53:08 +0200 |
commit | 008078c5368d4b27a6e653dd33574ed967f1d644 (patch) | |
tree | 3451465a7208d11def52460bb7a64ebef67b81b0 /module/plugins/hoster/GamefrontCom.py | |
parent | New plugin: Keep2shareCC (diff) | |
download | pyload-008078c5368d4b27a6e653dd33574ed967f1d644.tar.xz |
GamefrontCom: unlimited chunks even for free users
See #279
Diffstat (limited to 'module/plugins/hoster/GamefrontCom.py')
-rw-r--r-- | module/plugins/hoster/GamefrontCom.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/GamefrontCom.py b/module/plugins/hoster/GamefrontCom.py index a0ee03f26..f77868b16 100644 --- a/module/plugins/hoster/GamefrontCom.py +++ b/module/plugins/hoster/GamefrontCom.py @@ -8,7 +8,7 @@ class GamefrontCom(Hoster): __name__ = "GamefrontCom" __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?gamefront.com/files/[A-Za-z0-9]+" - __version__ = "0.03" + __version__ = "0.04" __description__ = """gamefront.com hoster plugin""" __author_name__ = ("fwannmacher") __author_mail__ = ("felipe@warhammerproject.com") @@ -21,6 +21,7 @@ class GamefrontCom(Hoster): def setup(self): self.resumeDownload = True self.multiDL = True + self.chunkLimit = -1 def process(self, pyfile): self.pyfile = pyfile |