mirror of https://github.com/vector-im/riot-web
Add (potential) Jitsi auth type to widget data
So we don't have to fetch the auth type when joining the conference.pull/21833/head
parent
680de2af95
commit
a511ad6633
|
@ -411,12 +411,14 @@ async function _startCallApp(roomId, type) {
|
||||||
const parsedUrl = new URL(widgetUrl);
|
const parsedUrl = new URL(widgetUrl);
|
||||||
parsedUrl.search = ''; // set to empty string to make the URL class use searchParams instead
|
parsedUrl.search = ''; // set to empty string to make the URL class use searchParams instead
|
||||||
parsedUrl.searchParams.set('confId', confId);
|
parsedUrl.searchParams.set('confId', confId);
|
||||||
|
parsedUrl.searchParams.set('auth', jitsiAuth);
|
||||||
widgetUrl = parsedUrl.toString();
|
widgetUrl = parsedUrl.toString();
|
||||||
|
|
||||||
const widgetData = {
|
const widgetData = {
|
||||||
conferenceId: confId,
|
conferenceId: confId,
|
||||||
isAudioOnly: type === 'voice',
|
isAudioOnly: type === 'voice',
|
||||||
domain: jitsiDomain,
|
domain: jitsiDomain,
|
||||||
|
auth: jitsiAuth,
|
||||||
};
|
};
|
||||||
|
|
||||||
const widgetId = (
|
const widgetId = (
|
||||||
|
|
Loading…
Reference in New Issue