UI: Added catch error when parsing incorrect debug message in rule node
This commit is contained in:
parent
a0c370079e
commit
0ee7dff7b4
@ -46,10 +46,14 @@ export class NodeScriptTestService {
|
|||||||
let msgType: string;
|
let msgType: string;
|
||||||
if (debugIn) {
|
if (debugIn) {
|
||||||
if (debugIn.data) {
|
if (debugIn.data) {
|
||||||
|
try {
|
||||||
msg = JSON.parse(debugIn.data);
|
msg = JSON.parse(debugIn.data);
|
||||||
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
if (debugIn.metadata) {
|
if (debugIn.metadata) {
|
||||||
|
try {
|
||||||
metadata = JSON.parse(debugIn.metadata);
|
metadata = JSON.parse(debugIn.metadata);
|
||||||
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
msgType = debugIn.msgType;
|
msgType = debugIn.msgType;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user