fix decrypting note titles on the server installation, closes #724

This commit is contained in:
zadam 2019-11-26 19:49:52 +01:00
parent 94c904fb40
commit 3ff24d53e5

View File

@ -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);
} }
} }
} }