fixed some encryption issues

This commit is contained in:
zadam
2020-12-21 23:19:03 +01:00
parent 7133e60267
commit bdfd760b9d
2 changed files with 10 additions and 2 deletions

View File

@@ -338,7 +338,7 @@ class Note {
decrypt() {
if (this.isProtected && !this.isDecrypted && protectedSessionService.isProtectedSessionAvailable()) {
this.title = protectedSessionService.decryptString(note.title);
this.title = protectedSessionService.decryptString(this.title);
this.isDecrypted = true;
}