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.
This commit is contained in:
damencho 2019-07-11 14:58:14 +01:00
parent b86df7a8e3
commit 0e9e695251
2 changed files with 4 additions and 1 deletions

View File

@ -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;
},

View File

@ -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;