mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
fix decrypting note titles on the server installation, closes #724
This commit is contained in:
parent
94c904fb40
commit
3ff24d53e5
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user