I have something like this in my code
subMan.subscribe("subName", param);
subscription doesn't work if param variable contain a string with special chars. (example string: "Method not found [404]")
when I replace subscription with Meteor.subscribe everything works as expected.
I have something like this in my code
subMan.subscribe("subName", param);
subscription doesn't work ifparam
variable contain a string with special chars. (example string: "Method not found [404]")when I replace subscription with Meteor.subscribe everything works as expected.