This commit is contained in:
yflory
2017-07-18 15:52:46 +02:00
parent 91ebbdfdb4
commit cba113a2b0

View File

@@ -618,13 +618,13 @@ define([
var keyStr = parsed.hashData.key; var keyStr = parsed.hashData.key;
var cryptor = Crypto.createEditCryptor(keyStr); var cryptor = Crypto.createEditCryptor(keyStr);
var key = cryptor.cryptKey; var key = cryptor.cryptKey;
var decryptMsg var decryptMsg;
try { try {
decryptMsg = Crypto.decrypt(message, key); decryptMsg = Crypto.decrypt(message, key);
} catch () { } catch (e) {
// If we can't decrypt, it means it is not a friend request message // If we can't decrypt, it means it is not a friend request message
} }
if (!decrypMsg) { return; } if (!decryptMsg) { return; }
// Parse // Parse
msg = JSON.parse(decryptMsg); msg = JSON.parse(decryptMsg);
if (msg[1] !== parsed.hashData.channel) { return; } if (msg[1] !== parsed.hashData.channel) { return; }