Update to RingRTC v2.38.0

Co-authored-by: ayumi yu <ayumi@signal.org>
This commit is contained in:
Jim Gustafson 2024-02-22 16:17:36 -08:00 committed by GitHub
parent b5da4a64d0
commit 1fc6a26299
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 9 deletions

View file

@ -2596,10 +2596,14 @@ export class CallingClass {
const isContactUntrusted = !isInSystemContacts(conversation.attributes);
const callSettings = {
iceServer: {
...iceServer,
urls: iceServer.urls.slice(),
},
iceServers: [
{
hostname: '',
username: iceServer.username,
password: iceServer.password,
urls: iceServer.urls.slice(),
},
],
hideIp: shouldRelayCalls || isContactUntrusted,
dataMode: DataMode.Normal,
// TODO: DESKTOP-3101