From fba3c1e5f6279ce1bd0fe8eb942717521a540845 Mon Sep 17 00:00:00 2001 From: cloudwebrtc Date: Fri, 14 Jan 2022 20:56:51 +0800 Subject: [PATCH] fix: Fix turn credentials format issue for safari. --- lib/src/voip.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/voip.dart b/lib/src/voip.dart index 3c7b7e1f..217984c0 100644 --- a/lib/src/voip.dart +++ b/lib/src/voip.dart @@ -1457,7 +1457,7 @@ class VoIP { { 'username': _turnServerCredentials!.username, 'credential': _turnServerCredentials!.password, - 'url': _turnServerCredentials!.uris[0] + 'urls': _turnServerCredentials!.uris[0] } ]; }