From d76fee7a2098c710c94993eb5f525afd168aa784 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 14 Jun 2022 17:17:22 +0200 Subject: [PATCH] fix: missing turn servers in group calls --- lib/src/voip/group_call.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/voip/group_call.dart b/lib/src/voip/group_call.dart index e8bfd5f6..7666e542 100644 --- a/lib/src/voip/group_call.dart +++ b/lib/src/voip/group_call.dart @@ -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;