diff options
author | OzzieIsaacs <OzzieIsaacs@users.noreply.github.com> | 2016-06-25 11:11:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-25 11:11:12 +0200 |
commit | a7bdb52e78f0691113641f2956a4ed65d8dac1df (patch) | |
tree | f2f6f2b24f173ce8d84ea5a23639e7982cc67d27 | |
parent | [RelinkUs] fix #2513 (diff) | |
download | pyload-a7bdb52e78f0691113641f2956a4ed65d8dac1df.tar.xz |
Made Passwort protected links working again
-rw-r--r-- | module/plugins/crypter/ShareLinksBiz.py | 2 |
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: |