mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
decrypt note title in the recent changes if in secure session, otherwise omit the change altogether
This commit is contained in:
parent
50b61d30f0
commit
5d531216d9
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user