When host turn on his cam at participant side host video doesn't render it throws "Detected unrecognized participant ID. Ignoring" error

Description
When the host starts the meeting, if a participant joins, there is a delay in rendering the incoming video.
On the participant side, the host video doesn’t render.
It throws an error “Detected unrecognised user ignoring ID” and

{

reason: “user is not send video” ​,

type: “INVALID_PARAMETERS”

}

For the above error, I tried to join into same session from different machines, but still, the same issues exist.

Browser Console Error
“Detected unrecognised user ignoring ID”

Which Web Video SDK version?
1.3.0

Video SDK Code Snippets

const onPeerVideoStateChangedListener = (zoomClient, mediaStream) => {
    zoomClient.on('peer-video-state-change', async (payload) => {
        console.log('onPeerVideoStateChange', payload);
        
        const { action, userId } = payload;

        if (userId !== state.participantId) {
            console.log('Detected unrecognized participant ID. Ignoring: ', userId);
            return;
        }

        if (action === PEER_VIDEO_STATE_CHANGE_ACTION_TYPE.Start) {
            toggleParticipantVideo(mediaStream, true);
        } else if (action === 'Stop') {
            toggleParticipantVideo(mediaStream, false);
        }
    });
};

Screenshots

Device (please complete the following information):

  • Device: Macbook Pro
  • OS: [e.g. macOS 11]
  • Browser: [. Chrome]

Additional context

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.