From b1363d629fc18fa570295b3777e4f9ee1bed37e3 Mon Sep 17 00:00:00 2001
From: Stefano <l.stickell@yahoo.it>
Date: Wed, 9 Oct 2013 20:14:46 +0200
Subject: GooIm: multiple downloads, resume and unlimited chunks are allowed
 even in free mode

---
 module/plugins/hoster/GooIm.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'module/plugins/hoster/GooIm.py')

diff --git a/module/plugins/hoster/GooIm.py b/module/plugins/hoster/GooIm.py
index 5a9d98396..f96e6e6cc 100644
--- a/module/plugins/hoster/GooIm.py
+++ b/module/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)
-- 
cgit v1.2.3