Merge branch 'nico/fix-stun-in-groupcalls' into 'main'
fix: missing turn servers in group calls See merge request famedly/company/frontend/famedlysdk!1057
This commit is contained in:
commit
a6c09e41dc
|
|
@ -815,7 +815,7 @@ class GroupCall {
|
||||||
..localPartyId = client.deviceID!
|
..localPartyId = client.deviceID!
|
||||||
..groupCallId = groupCallId
|
..groupCallId = groupCallId
|
||||||
..type = CallType.kVideo
|
..type = CallType.kVideo
|
||||||
..iceServers = [];
|
..iceServers = await voip.getIceSevers();
|
||||||
|
|
||||||
final newCall = voip.createNewCall(opts);
|
final newCall = voip.createNewCall(opts);
|
||||||
newCall.opponentDeviceId = opponentDevice.device_id;
|
newCall.opponentDeviceId = opponentDevice.device_id;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue