Add widgetId as a getWidgetUrl param

This commit is contained in:
Gigiaj 2025-05-22 17:49:40 -05:00
parent e5505cd5c2
commit 3bd7588497

View file

@ -40,6 +40,7 @@ export const getWidgetUrl = (
mx: MatrixClient,
roomId: string,
elementCallUrl: string,
widgetId: string,
setParams: any
): URL => {
const baseUrl = window.location.origin;
@ -48,7 +49,7 @@ export const getWidgetUrl = (
const params = new URLSearchParams({
embed: 'true',
widgetId: `element-call-${roomId}`,
widgetId,
appPrompt: 'false',
preload: 'false',
skipLobby: setParams.skipLobby ?? 'true',