diff --git a/vector/src/main/java/im/vector/riotx/features/call/WebRtcPeerConnectionManager.kt b/vector/src/main/java/im/vector/riotx/features/call/WebRtcPeerConnectionManager.kt index d35fd3eef8..5e301aa0a5 100644 --- a/vector/src/main/java/im/vector/riotx/features/call/WebRtcPeerConnectionManager.kt +++ b/vector/src/main/java/im/vector/riotx/features/call/WebRtcPeerConnectionManager.kt @@ -172,6 +172,7 @@ class WebRtcPeerConnectionManager @Inject constructor( // omit empty :/ if (it.isNotEmpty()) { Timber.v("## Sending local ice candidates to call") + it.forEach { peerConnection?.addIceCandidate(it) } currentCall?.sendLocalIceCandidates(it) } }