From b28c1537e85d8ec99a6335ba3cb3bf296961e046 Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 12 Oct 2017 10:59:23 +0200 Subject: [PATCH] Fix history in readonly mode --- www/common/sframe-common-outer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/sframe-common-outer.js b/www/common/sframe-common-outer.js index 6913f7ef5..d06ffd4b5 100644 --- a/www/common/sframe-common-outer.js +++ b/www/common/sframe-common-outer.js @@ -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); } };