fix: missing turn servers in group calls

This commit is contained in:
Nicolas Werner 2022-06-14 17:17:22 +02:00
parent 20a564cb78
commit d76fee7a20
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;