Skip to content

Commit cf635c6

Browse files
turt2livejryans
authored andcommitted
Remove underscore from Jitsi conference names
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.
1 parent 66d292f commit cf635c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CallHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ async function _startCallApp(roomId, type) {
430430
return;
431431
}
432432

433-
const confId = `JitsiConference_${generateHumanReadableId()}`;
433+
const confId = `JitsiConference${generateHumanReadableId()}`;
434434
const jitsiDomain = SdkConfig.get()['jitsi']['preferredDomain'];
435435

436436
let widgetUrl = WidgetUtils.getLocalJitsiWrapperUrl();

0 commit comments

Comments
 (0)