SOLVED: IronRouter Params with Question Mark

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?

Aaaaand it turns out to be a bug with my API vendor.

Nothing to see here.