diff options
Diffstat (limited to 'module/plugins')
| -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 7353f30a7..bd23d4751 100644 --- a/module/plugins/crypter/ShareLinksBiz.py +++ b/module/plugins/crypter/ShareLinksBiz.py @@ -63,7 +63,7 @@ class ShareLinksBiz(Crypter):          url = pyfile.url          if 's2l.biz' in url:              url = self.load(url, just_header=True)['location'] -        self.baseUrl = re.match(self.__pattern__, url).group(1) +        self.baseUrl = "http://www.%s.biz" % re.match(self.__pattern__, url).group(1)          self.fileId = re.match(self.__pattern__, url).group('ID')          self.package = pyfile.package()  | 
