hi chaim
i followed your tutorial and the video chat seems to not appearing for the other end
i suspect it happened because the e.candidate on handleICECandidateEvent always null
function handleICECandidateEvent(e) { console.log(e) if (e.candidate) { console.log(e) const payload = { target: otherUser.current, candidate: e.candidate, } socketRef.current.emit("ice-candidate", payload); } }
i keep getting null on e.candidate property whenever the onicecandidate event fired,
the code is exactly simillar to what is in the tutorial, what am i missing?