Skip to content
Snippets Groups Projects
Unverified Commit 28141484 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12728 from mariogasparoni/fix-skip-check-12705

fix(audio): mic not working when skipCheck=true
parents 18ff46aa bd610c2f
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