fix JSON propety validation of inject node

pull/3349/head
Hiroyasu Nishiyama 2022-01-13 21:42:50 +09:00
parent 943b103001
commit f786c7f144
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@
}
} else if (v[i].vt === "jsonata") {
try{jsonata(v[i].v);}catch(e){return false;}
} else if ([i].vt === "json") {
} else if (v[i].vt === "json") {
try{JSON.parse(v[i].v);}catch(e){return false;}
}
}