No longer use full href for the invite URL

This commit is contained in:
paweldomas 2016-08-01 13:33:01 -05:00
parent 10517115c3
commit 443c29f505
1 changed files with 4 additions and 1 deletions

View File

@ -280,7 +280,10 @@ UI.setLocalRaisedHandStatus = (raisedHandStatus) => {
*/
UI.initConference = function () {
let id = APP.conference.getMyUserId();
Toolbar.updateRoomUrl(window.location.href);
Toolbar.updateRoomUrl(
// Do not include query parameters
// "https://example.com" + "/SomeConference1245"
window.location.origin + window.location.pathname);
// Add myself to the contact list.
ContactList.addContact(id);