Remove underscore from Jitsi conference names

Fixes https://github.com/vector-im/riot-web/issues/12929

Note: we don't need this to fix conferences in our hosted instance (riot.im or modular.im), but it is a common thing for self-hosters, including sometimes ourselves, to accidentally make mistakes on.
pull/21833/head
Travis Ralston 2020-03-30 10:40:26 -06:00
parent 4e8cec354d
commit ca5d540311
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ async function _startCallApp(roomId, type) {
return;
}
const confId = `JitsiConference_${generateHumanReadableId()}`;
const confId = `JitsiConference${generateHumanReadableId()}`;
const jitsiDomain = SdkConfig.get()['jitsi']['preferredDomain'];
let widgetUrl = WidgetUtils.getLocalJitsiWrapperUrl();