diff --git a/static/js/recent_changes.js b/static/js/recent_changes.js index 15d61e3ac..27d87d625 100644 --- a/static/js/recent_changes.js +++ b/static/js/recent_changes.js @@ -13,12 +13,12 @@ $(document).bind('keydown', 'alt+r', function() { for (const row of result) { if (row.encryption > 0) { - if (!isEncryptionAvailable()) { - // we don't display encrypted note activity if we're not in the secure session - continue; + if (isEncryptionAvailable()) { + row.note_title = decryptString(row.note_title); + } + else { + row.note_title = "[encrypted]"; } - - row.note_title = decryptString(row.note_title); } const dateModified = new Date(row.date_modified * 1000);