mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
fix decrypting note titles on the server installation, closes #724
This commit is contained in:
@@ -37,7 +37,7 @@ function isProtectedSessionAvailable() {
|
|||||||
function decryptNotes(notes) {
|
function decryptNotes(notes) {
|
||||||
for (const note of notes) {
|
for (const note of notes) {
|
||||||
if (note.isProtected) {
|
if (note.isProtected) {
|
||||||
note.title = decrypt(note.title);
|
note.title = decryptString(note.title);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user