Answer the question
In order to leave comments, you need to log in
When is the RTCPeerConnection.onicecandidate event fired?
When does the RTCPeerConnection.onicecandidate event occur? In those examples that I found, there is always a check:
yourConnection.onicecandidate = function (event) {
if (event.candidate) {
send({
type: "candidate",
candidate: event.candidate
});
}
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question