Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Remove underscore from Jitsi conference names
Browse files Browse the repository at this point in the history
Fixes element-hq/element-web#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.
  • Loading branch information
turt2live committed Mar 30, 2020
1 parent 4e8cec3 commit ca5d540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CallHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit ca5d540

Please sign in to comment.