Merge branch 'voip/fix-turn-credentials-issue-for-safari' into 'main'

fix: Fix turn credentials format issue for safari.

Closes famedly-web#211

See merge request famedly/company/frontend/famedlysdk!935
This commit is contained in:
Nicolas Werner 2022-01-14 13:07:13 +00:00
commit 1935c17f50
1 changed files with 1 additions and 1 deletions

View File

@ -1457,7 +1457,7 @@ class VoIP {
{ {
'username': _turnServerCredentials!.username, 'username': _turnServerCredentials!.username,
'credential': _turnServerCredentials!.password, 'credential': _turnServerCredentials!.password,
'url': _turnServerCredentials!.uris[0] 'urls': _turnServerCredentials!.uris[0]
} }
]; ];
} }