summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2016-06-25 11:59:21 +0200
committerGravatar GitHub <noreply@github.com> 2016-06-25 11:59:21 +0200
commit4ab19bbfff93cfabf3e04f85a5c562a71ca0bb8e (patch)
treef2f6f2b24f173ce8d84ea5a23639e7982cc67d27
parent[RelinkUs] fix #2513 (diff)
parentMade Passwort protected links working again (diff)
downloadpyload-4ab19bbfff93cfabf3e04f85a5c562a71ca0bb8e.tar.xz
Merge pull request #2522 from OzzieIsaacs/patch-1
Cryper ShareOnline.Biz Made Passwort protected links working again
-rw-r--r--module/plugins/crypter/ShareLinksBiz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/ShareLinksBiz.py b/module/plugins/crypter/ShareLinksBiz.py
index 3d67d3791..24ae15388 100644
--- a/module/plugins/crypter/ShareLinksBiz.py
+++ b/module/plugins/crypter/ShareLinksBiz.py
@@ -83,7 +83,7 @@ class ShareLinksBiz(Crypter):
url = header.get('location')
if re.match(self.__pattern__, url):
- self.base_url = "http://www.%s.biz" % re.match(self.__pattern__, url).group(1)
+ self.base_url = "http://%s.biz" % re.match(self.__pattern__, url).group(1)
self.file_id = re.match(self.__pattern__, url).group('ID')
else: