No longer use full href for the invite URL
This commit is contained in:
parent
10517115c3
commit
443c29f505
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue