mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-04-23 21:29:02 -05:00
note titles are now encrypted as well - plus auto-decryption of note tree and unloading
This commit is contained in:
+8
-3
@@ -164,10 +164,15 @@ $(function(){
|
||||
for (const note of notes) {
|
||||
globalAllNoteIds.push(note.note_id);
|
||||
|
||||
note.title = note.note_title;
|
||||
if (note.encryption > 0) {
|
||||
note.title = "[encrypted]";
|
||||
}
|
||||
else {
|
||||
note.title = note.note_title;
|
||||
|
||||
if (note.is_clone) {
|
||||
note.title += " (clone)";
|
||||
if (note.is_clone) {
|
||||
note.title += " (clone)";
|
||||
}
|
||||
}
|
||||
|
||||
note.key = note.note_id;
|
||||
|
||||
Reference in New Issue
Block a user