Commit f34ec0ab authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Don't hide mismatches in the PeerConnection state automaton.

The previous behaviour led to silent failures, which was confusing.
parent f4811e8c
......@@ -569,16 +569,12 @@ func gotAnswer(c *webClient, id string, sdp string) error {
return ErrUnknownId
}
if down.pc.SignalingState() == webrtc.SignalingStateStable {
log.Printf("Got answer in stable state -- this shouldn't happen")
} else {
err := down.pc.SetRemoteDescription(webrtc.SessionDescription{
Type: webrtc.SDPTypeAnswer,
SDP: sdp,
})
if err != nil {
return err
}
err := down.pc.SetRemoteDescription(webrtc.SessionDescription{
Type: webrtc.SDPTypeAnswer,
SDP: sdp,
})
if err != nil {
return err
}
for _, t := range down.tracks {
......@@ -590,7 +586,7 @@ func gotAnswer(c *webClient, id string, sdp string) error {
}
}
err := down.flushICECandidates()
err = down.flushICECandidates()
if err != nil {
log.Printf("ICE: %v", err)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment