code review changes
This commit is contained in:
parent
32ecd6310c
commit
86dd35b927
|
@ -104,6 +104,7 @@ export function invite(
|
|||
} = state['features/base/config'];
|
||||
const inviteUrl = getInviteURL(state);
|
||||
const { sipInviteUrl } = state['features/base/config'];
|
||||
const { locationURL } = state['features/base/connection'];
|
||||
const { jwt } = state['features/base/jwt'];
|
||||
const { name: displayName } = getLocalParticipant(state);
|
||||
|
||||
|
@ -172,6 +173,7 @@ export function invite(
|
|||
|
||||
conference && inviteSipEndpoints(
|
||||
sipEndpoints,
|
||||
locationURL,
|
||||
sipInviteUrl,
|
||||
jwt,
|
||||
conference.options.name,
|
||||
|
|
|
@ -808,6 +808,7 @@ export function isSharingEnabled(sharingFeature: string) {
|
|||
* Sends a post request to an invite service.
|
||||
*
|
||||
* @param {Array} inviteItems - The list of the "sip" type items to invite.
|
||||
* @param {URL} locationURL - The URL of the location.
|
||||
* @param {string} sipInviteUrl - The invite service that generates the invitation.
|
||||
* @param {string} jwt - The jwt token.
|
||||
* @param {string} roomName - The name to the conference.
|
||||
|
@ -816,6 +817,7 @@ export function isSharingEnabled(sharingFeature: string) {
|
|||
*/
|
||||
export function inviteSipEndpoints( // eslint-disable-line max-params
|
||||
inviteItems: Array<Object>,
|
||||
locationURL: URL,
|
||||
sipInviteUrl: string,
|
||||
jwt: string,
|
||||
roomName: string,
|
||||
|
@ -825,7 +827,7 @@ export function inviteSipEndpoints( // eslint-disable-line max-params
|
|||
return Promise.resolve();
|
||||
}
|
||||
|
||||
const baseUrl = window.location.href.toLowerCase().replace(`/${roomName}`, '');
|
||||
const baseUrl = locationURL.href.toLowerCase().replace(`/${roomName}`, '');
|
||||
|
||||
return fetch(
|
||||
sipInviteUrl,
|
||||
|
|
Loading…
Reference in New Issue