diff options
author | Stefano <l.stickell@yahoo.it> | 2014-05-13 14:05:19 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-05-13 14:05:19 +0200 |
commit | e04a7fa2fcf7e2b4ace548f876117c63d7f265af (patch) | |
tree | 52ddf2fe798f5179fdbe3531e0fb4f6a530993ac /module | |
parent | [Linksnappy] fixes (diff) | |
download | pyload-e04a7fa2fcf7e2b4ace548f876117c63d7f265af.tar.xz |
[XFileSharingPro] Fixed premium mode
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/XFileSharingPro.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/XFileSharingPro.py b/module/plugins/hoster/XFileSharingPro.py index 7f47ffce8..01defdfed 100644 --- a/module/plugins/hoster/XFileSharingPro.py +++ b/module/plugins/hoster/XFileSharingPro.py @@ -37,7 +37,7 @@ class XFileSharingPro(SimpleHoster): __name__ = "XFileSharingPro" __type__ = "hoster" __pattern__ = r'^unmatchable$' - __version__ = "0.29" + __version__ = "0.30" __description__ = """XFileSharingPro base hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") @@ -157,6 +157,7 @@ class XFileSharingPro(SimpleHoster): return found.group(1) def handlePremium(self): + self.html = self.load(self.pyfile.url) self.html = self.load(self.pyfile.url, post=self.getPostParameters()) found = re.search(self.DIRECT_LINK_PATTERN, self.html) if not found: |