diff --git a/internal/webrtc/manager.go b/internal/webrtc/manager.go index 1d147e1c..49a597e8 100644 --- a/internal/webrtc/manager.go +++ b/internal/webrtc/manager.go @@ -454,7 +454,11 @@ func (manager *WebRTCManagerCtx) apiConfiguration() *webrtc.Configuration { } return &webrtc.Configuration{ - ICEServers: ICEServers, + ICEServers: []webrtc.ICEServer{ + { + URLs: manager.config.ICEServers, + }, + }, SDPSemantics: webrtc.SDPSemanticsUnifiedPlanWithFallback, } }