use decryptString()

This commit is contained in:
zadam
2019-11-02 07:50:23 +01:00
parent 475fddeec1
commit b7b583ff04
5 changed files with 11 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ class Note extends Entity {
this.isContentAvailable = protectedSessionService.isProtectedSessionAvailable();
if (this.isContentAvailable) {
this.title = protectedSessionService.decrypt(this.title).toString();
this.title = protectedSessionService.decryptString(this.title);
}
else {
this.title = "[protected]";