mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
fix saving JSON note with invalid JSON (previously in such a case content was not updated), fixes #307
This commit is contained in:
@@ -56,6 +56,9 @@ class Note extends Entity {
|
|||||||
setContent(content) {
|
setContent(content) {
|
||||||
this.content = 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 {
|
try {
|
||||||
this.jsonContent = JSON.parse(this.content);
|
this.jsonContent = JSON.parse(this.content);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user