mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
moving out note revision content into separate table, refactoring, WIP
This commit is contained in:
@@ -41,8 +41,8 @@ async function getRecentChanges() {
|
||||
for (const change of recentChanges) {
|
||||
if (change.current_isProtected) {
|
||||
if (protectedSessionService.isProtectedSessionAvailable()) {
|
||||
change.title = protectedSessionService.decryptNoteTitle(change.noteId, change.title);
|
||||
change.current_title = protectedSessionService.decryptNoteTitle(change.noteId, change.current_title);
|
||||
change.title = protectedSessionService.decrypt(change.title);
|
||||
change.current_title = protectedSessionService.decrypt(change.current_title);
|
||||
}
|
||||
else {
|
||||
change.title = change.current_title = "[Protected]";
|
||||
|
||||
Reference in New Issue
Block a user