From 0e9e695251b5fe4e8e05d9daf1033fe6812064b3 Mon Sep 17 00:00:00 2001 From: damencho Date: Thu, 11 Jul 2019 14:58:14 +0100 Subject: [PATCH] Passes confID when initializing JitsiConference. The confID is domain.com/RoomName or domain.com/tenant/RoomName, adds the tenant if any and also keeps the room name case. --- conference.js | 2 ++ react/features/base/conference/actions.js | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/conference.js b/conference.js index a09bc5bc7..44278da75 100644 --- a/conference.js +++ b/conference.js @@ -1241,6 +1241,7 @@ export default { const options = config; const nick = APP.store.getState()['features/base/settings'].displayName; + const { locationURL } = APP.store.getState()['features/base/connection']; if (nick) { options.displayName = nick; @@ -1248,6 +1249,7 @@ export default { options.applicationName = interfaceConfig.APP_NAME; options.getWiFiStatsMethod = this._getWiFiStatsMethod; + options.confID = `${locationURL.host}${locationURL.pathname}`; return options; }, diff --git a/react/features/base/conference/actions.js b/react/features/base/conference/actions.js index 88a29e433..3503f6abb 100644 --- a/react/features/base/conference/actions.js +++ b/react/features/base/conference/actions.js @@ -393,7 +393,8 @@ export function createConference() { room.toLowerCase(), { ...state['features/base/config'], applicationName: getName(), - getWiFiStatsMethod: getJitsiMeetGlobalNS().getWiFiStats + getWiFiStatsMethod: getJitsiMeetGlobalNS().getWiFiStats, + confID: `${locationURL.host}${locationURL.pathname}` }); connection[JITSI_CONNECTION_CONFERENCE_KEY] = conference;