In index.html from the VidyoWeb simple sample v1.10, the _getUrlVars) function should decode each querystring value before storing it. Here is the method with the decodeURIComponent function in use:
function getUrlVars() {
var vars = {};
var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) {
vars[key] = decodeURIComponent(value);
});
console.debug(vars);
return vars;
}
This must be fixed by Vidyo since they own the source for the VidyoWeb simple sample. The workaround is simply to add the decodeURIComponent function call where shown above. This issue will remain open until Vidyo provides a release with this fix in place.
In index.html from the VidyoWeb simple sample v1.10, the _getUrlVars) function should decode each querystring value before storing it. Here is the method with the decodeURIComponent function in use:
This must be fixed by Vidyo since they own the source for the VidyoWeb simple sample. The workaround is simply to add the decodeURIComponent function call where shown above. This issue will remain open until Vidyo provides a release with this fix in place.