You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: