summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster
diff options
context:
space:
mode:
authorGravatar Seoester <seoester@googlemail.com> 2013-05-30 16:27:18 +0200
committerGravatar Seoester <seoester@googlemail.com> 2013-05-30 16:27:18 +0200
commitec7645ffe3fe97db9f6d2efb249df47c624a418c (patch)
tree292872089443f1fecac139d0659044ee907036a2 /module/plugins/hoster
parentRecreated StreamcloudEu plugin using XFileSharingPro (diff)
downloadpyload-ec7645ffe3fe97db9f6d2efb249df47c624a418c.tar.xz
StreamcloudEu plugin: MultiDL enabled
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r--module/plugins/hoster/StreamcloudEu.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/module/plugins/hoster/StreamcloudEu.py b/module/plugins/hoster/StreamcloudEu.py
index eee9b5d67..a041d917c 100644
--- a/module/plugins/hoster/StreamcloudEu.py
+++ b/module/plugins/hoster/StreamcloudEu.py
@@ -14,9 +14,13 @@ class StreamcloudEu(XFileSharingPro):
HOSTER_NAME = "streamcloud.eu"
DIRECT_LINK_PATTERN = r'file: "(https?://stor\d+\.streamcloud.eu:?\d*/.*/video\.mp4)",'
+ def setup(self):
+ XFileSharingPro.setup(self)
+ self.multiDL = True
+
def getDownloadLink(self):
found = re.search(self.DIRECT_LINK_PATTERN, self.html, re.S)
if found:
- return found.group(1)
+ return found.group(1)
return XFileSharingPro.getDownloadLink(self)