From ec7645ffe3fe97db9f6d2efb249df47c624a418c Mon Sep 17 00:00:00 2001 From: Seoester Date: Thu, 30 May 2013 16:27:18 +0200 Subject: StreamcloudEu plugin: MultiDL enabled --- module/plugins/hoster/StreamcloudEu.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'module/plugins/hoster') 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) -- cgit v1.2.3