Creating a node
Crashes after sending inputs
- If the input included symbols like
ü,äorö, make sure to encode the input before sending:
sendDataToNode(
code,
{
text: encodeURI(someInput)
}
);
ü, ä or ö, make sure to encode the input before sending:sendDataToNode(
code,
{
text: encodeURI(someInput)
}
);