From 443c29f50547fa6476b8885e7c3517b5717ffc06 Mon Sep 17 00:00:00 2001 From: paweldomas Date: Mon, 1 Aug 2016 13:33:01 -0500 Subject: [PATCH] No longer use full href for the invite URL --- modules/UI/UI.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/UI/UI.js b/modules/UI/UI.js index ada993c38..2fbb17fbb 100644 --- a/modules/UI/UI.js +++ b/modules/UI/UI.js @@ -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);