mirror of
https://github.com/zadam/trilium.git
synced 2025-02-25 15:35:43 +08:00
fix saving JSON note with invalid JSON (previously in such a case content was not updated), fixes #307
This commit is contained in:
parent
4b977a3306
commit
0722494d41
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue