mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
decrypt note title in the recent changes if in secure session, otherwise omit the change altogether
This commit is contained in:
@@ -12,6 +12,15 @@ $(document).bind('keydown', 'alt+r', function() {
|
||||
const groupedByDate = {};
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
row.note_title = decryptString(row.note_title);
|
||||
}
|
||||
|
||||
const dateModified = new Date(row.date_modified * 1000);
|
||||
const formattedDate = formatDate(dateModified);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user