diff --git a/src/entities/note.js b/src/entities/note.js index 45cc40d89..4e61631ab 100644 --- a/src/entities/note.js +++ b/src/entities/note.js @@ -56,6 +56,9 @@ class Note extends Entity { setContent(content) { this.content = content; + // if parsing below is not successful then there's no jsonContent as opposed to still having the old unupdated ones + delete this.jsonContent; + try { this.jsonContent = JSON.parse(this.content); }