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:
Nicolas Werner 2022-06-14 15:51:29 +00:00
commit a6c09e41dc
1 changed files with 1 additions and 1 deletions

View File

@ -815,7 +815,7 @@ class GroupCall {
..localPartyId = client.deviceID!
..groupCallId = groupCallId
..type = CallType.kVideo
..iceServers = [];
..iceServers = await voip.getIceSevers();
final newCall = voip.createNewCall(opts);
newCall.opponentDeviceId = opponentDevice.device_id;