diff options
-rw-r--r-- | pyload/plugins/hoster/GooIm.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/GooIm.py b/pyload/plugins/hoster/GooIm.py index 5a9d98396..f96e6e6cc 100644 --- a/pyload/plugins/hoster/GooIm.py +++ b/pyload/plugins/hoster/GooIm.py @@ -24,7 +24,7 @@ class GooIm(SimpleHoster): __name__ = "GooIm" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?goo\.im/.+" - __version__ = "0.01" + __version__ = "0.02" __description__ = """Goo.im hoster plugin""" __author_name__ = ("stickell") __author_mail__ = ("l.stickell@yahoo.it") @@ -32,6 +32,10 @@ class GooIm(SimpleHoster): FILE_NAME_PATTERN = r'<h3>Filename: (?P<N>.+)</h3>' FILE_OFFLINE_PATTERN = r'The file you requested was not found' + def setup(self): + self.chunkLimit = -1 + self.multiDL = self.resumeDownload = True + def handleFree(self): self.html = self.load(self.pyfile.url) m = re.search(r'MD5sum: (?P<MD5>[0-9a-z]{32})</h3>', self.html) |