diff options
author | GamaC0de <nitzo2001@yahoo.com> | 2016-04-27 13:17:25 +0200 |
---|---|---|
committer | GamaC0de <nitzo2001@yahoo.com> | 2016-04-27 13:17:25 +0200 |
commit | 86e82813485dc81cf569f4e91b7021110e86aeb1 (patch) | |
tree | 083fc9835864c0330ade71a28c54d143f4d94c02 /module | |
parent | [MegaCoNzFolder] Fix minor bug (diff) | |
download | pyload-86e82813485dc81cf569f4e91b7021110e86aeb1.tar.xz |
[MegaCoNzFolder] Fix minor bug (2)
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/crypter/MegaCoNzFolder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/MegaCoNzFolder.py b/module/plugins/crypter/MegaCoNzFolder.py index 15f145394..2e14d704f 100644 --- a/module/plugins/crypter/MegaCoNzFolder.py +++ b/module/plugins/crypter/MegaCoNzFolder.py @@ -43,7 +43,7 @@ from module.plugins.internal.misc import decode, json class MegaCoNzFolder(Crypter): __name__ = "MegaCoNzFolder" __type__ = "crypter" - __version__ = "0.13" + __version__ = "0.14" __status__ = "testing" __pattern__ = r'(https?://(?:www\.)?mega(\.co)?\.nz/|mega:|chrome:.+?)#F!(?P<ID>[\w^_]+)!(?P<KEY>[\w,\-=]+)' @@ -147,7 +147,7 @@ class MegaCoNzFolder(Crypter): get_node_key = lambda k: self.base64_encode(self.a32_to_str(self.decrypt_key(k, master_key))) - self.links = [_("https://mega.co.nz/#N!%s!%s=###n=%s") % + self.links = [_("https://mega.co.nz/#N!%s!%s###n=%s") % (_f['h'], get_node_key(_f['k'][_f['k'].index(':') + 1:]), id) |