You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://jsfiddle.net/qg0njd1s/
apparently runs into the 4 second timeout that tries to run addIceCandidate({})
This should not happen as the SDP has end-of-candidates.
Not very common but would be good to avoid.
The text was updated successfully, but these errors were encountered:
the reason this goes wrong is that the 4 second timeout is started in setRemoteDescription but the ice transport is only started in SLD. The right thing is (imo) to move the timeout to where the ice transport is started.
moving this to a function called on start would be eas but the test mock is not complex enough and goes to complete when there is a remote candidate -- instead of waiting for addRemoteCandidate({})
https://jsfiddle.net/qg0njd1s/
apparently runs into the 4 second timeout that tries to run addIceCandidate({})
This should not happen as the SDP has end-of-candidates.
Not very common but would be good to avoid.
The text was updated successfully, but these errors were encountered: