Merge pull request #9251 from jitsi/tavram/remove-sip-invite

fix(sip) remove sip text from invite
This commit is contained in:
Avram Tudor 2021-05-24 09:21:19 +03:00 committed by GitHub
commit 4138e1ac53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 8 deletions

View File

@ -301,14 +301,6 @@ export function getInviteText({
invite = `${invite}\n${dial}\n${moreNumbers}`;
}
if (dialIn.sipUri) {
const sipText = t('info.inviteSipEndpoint', {
sipUri: dialIn.sipUri
});
invite = `${invite}\n${sipText}`;
}
return invite;
}