Fix crash with reading invalid JSON files

This commit is contained in:
jeremy@jermolene.com 2021-09-22 12:56:55 +01:00
parent bdbb884be0
commit f6eadbd1c9
1 changed files with 6 additions and 1 deletions

View File

@ -1622,7 +1622,12 @@ $tw.modules.define("$:/boot/tiddlerdeserializer/json","tiddlerdeserializer",{
}
return true;
},
data = JSON.parse(text);
data = {};
try {
data = JSON.parse(text);
} catch(e) {
// Ignore JSON parse errors
}
if($tw.utils.isArray(data) && isTiddlerArrayValid(data)) {
return data;
} else if(isTiddlerValid(data)) {