2
2
mirror of https://github.com/m1k1o/neko.git synced 2024-07-24 14:40:50 +12:00

peer connection SetLocalDescription error catch.

This commit is contained in:
Miroslav Šedivý
2020-10-28 20:56:14 +01:00
parent 2f0b159ad6
commit 4093bc5311

@ -142,7 +142,10 @@ func (manager *WebRTCManager) CreatePeer(id string, session types.Session) (stri
})
})
connection.SetLocalDescription(description)
if err := connection.SetLocalDescription(description); err != nil {
return "", manager.config.ICELite, manager.config.ICEServers, err
}
connection.OnConnectionStateChange(func(state webrtc.PeerConnectionState) {
switch state {
case webrtc.PeerConnectionStateDisconnected: