Skip to content
Snippets Groups Projects
Commit bd610c2f authored by Mario Jr's avatar Mario Jr
Browse files

fix(audio): mic not working when skipCheck=true

Complements #12705
parent 18ff46aa
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ const stripMDnsCandidates = (sdp) => {
};
const filterValidIceCandidates = (validIceCandidates, sdp) => {
if (!validIceCandidates.length) return sdp;
if (!validIceCandidates || !validIceCandidates.length) return sdp;
const matchCandidatesIp = (candidate, mediaCandidate) => (
(candidate.address && candidate.address.includes(mediaCandidate.ip))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment