Hi all, I have this code snippet which works fine, UNTIL some one sends a question mark.
Server.js
console.log(params.query.From);
console.log(params.query.To);
console.log(params.query.Body);
If I send “Hello world” it works PERFECTLY! Yay.
But if I send… “Hello world?” – it becomes undefined.
Any ideas where to start with this one?