Fix history in readonly mode

This commit is contained in:
yflory 2017-10-12 10:59:23 +02:00
parent 620ba4ed5d
commit b28c1537e8

View File

@ -262,7 +262,7 @@ define([
msg = parsed[1][4];
if (msg) {
msg = msg.replace(/^cp\|/, '');
var decryptedMsg = crypto.decrypt(msg, secret.keys.validateKey);
var decryptedMsg = crypto.decrypt(msg, true);
msgs.push(decryptedMsg);
}
};