diff options
author | bilalghouri <bilalghouri@users.noreply.github.com> | 2015-11-27 18:18:40 +0100 |
---|---|---|
committer | bilalghouri <bilalghouri@users.noreply.github.com> | 2015-11-27 18:18:40 +0100 |
commit | fa65940d466ac4c87fc25f04a84cec1d89f8a0bd (patch) | |
tree | 4e967355c645b656ab434a1de5cb2b5f8a9f9160 /module/plugins | |
parent | Merge pull request #2140 from GammaC0de/patch-9 (diff) | |
download | pyload-fa65940d466ac4c87fc25f04a84cec1d89f8a0bd.tar.xz |
Update LinksnappyCom.py
Fixed API URL for SSL support.
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/LinksnappyCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/LinksnappyCom.py b/module/plugins/hoster/LinksnappyCom.py index a57f0f830..3a5f6c049 100644 --- a/module/plugins/hoster/LinksnappyCom.py +++ b/module/plugins/hoster/LinksnappyCom.py @@ -10,7 +10,7 @@ from module.plugins.internal.utils import json class LinksnappyCom(MultiHoster): __name__ = "LinksnappyCom" __type__ = "hoster" - __version__ = "0.14" + __version__ = "0.15" __status__ = "testing" __pattern__ = r'https?://(?:[^/]+\.)?linksnappy\.com' @@ -23,7 +23,7 @@ class LinksnappyCom(MultiHoster): __description__ = """Linksnappy.com multi-hoster plugin""" __license__ = "GPLv3" - __authors__ = [("stickell", "l.stickell@yahoo.it")] + __authors__ = [("stickell", "l.stickell@yahoo.it", "Bilal Ghouri")] def handle_premium(self, pyfile): @@ -33,7 +33,7 @@ class LinksnappyCom(MultiHoster): 'username': self.account.user, 'password': self.account.get_login('password')}) - r = self.load("http://linksnappy.com/api/linkgen", + r = self.load("https://linksnappy.com/api/linkgen", post={'genLinks': json_params}) self.log_debug("JSON data: " + r) |