summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar OzzieIsaacs <OzzieIsaacs@users.noreply.github.com> 2016-06-25 11:11:12 +0200
committerGravatar GitHub <noreply@github.com> 2016-06-25 11:11:12 +0200
commita7bdb52e78f0691113641f2956a4ed65d8dac1df (patch)
treef2f6f2b24f173ce8d84ea5a23639e7982cc67d27 /module
parent[RelinkUs] fix #2513 (diff)
downloadpyload-a7bdb52e78f0691113641f2956a4ed65d8dac1df.tar.xz
Made Passwort protected links working again
Diffstat (limited to 'module')
-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: