diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-10 01:16:29 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-10 01:16:29 +0100 |
commit | f85e28e565a1e0a76e6271d0b0853d6d48b4a043 (patch) | |
tree | 62d09fa71ebd1f25226f8cb02e531e9247096110 /module/plugins/hooks/LinkdecrypterCom.py | |
parent | [ExtractArchive] Fix https://github.com/pyload/pyload/issues/1241 (diff) | |
download | pyload-f85e28e565a1e0a76e6271d0b0853d6d48b4a043.tar.xz |
[MultiHook] Fix _pluginSet (fix LinkdecrypterCom issue)
Diffstat (limited to 'module/plugins/hooks/LinkdecrypterCom.py')
-rw-r--r-- | module/plugins/hooks/LinkdecrypterCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/LinkdecrypterCom.py b/module/plugins/hooks/LinkdecrypterCom.py index f85a598bc..769e63e81 100644 --- a/module/plugins/hooks/LinkdecrypterCom.py +++ b/module/plugins/hooks/LinkdecrypterCom.py @@ -8,7 +8,7 @@ from module.plugins.internal.MultiHook import MultiHook class LinkdecrypterCom(MultiHook): __name__ = "LinkdecrypterCom" __type__ = "hook" - __version__ = "1.02" + __version__ = "1.03" __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"), ("pluginlist" , "str" , "Plugin list (comma separated)" , "" ), @@ -22,4 +22,4 @@ class LinkdecrypterCom(MultiHook): def getCrypters(self): return re.search(r'>Supported\(\d+\)</b>: <i>(.[\w.\-, ]+)', - self.getURL("http://linkdecrypter.com/").replace("(g)", "")).group(1).split(', ') + self.getURL("http://linkdecrypter.com/", decode=True).replace("(g)", "")).group(1).split(', ') |