Detected unrecognised user ignoring ID

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);
    }
});

};

To Reproduce(If applicable)
Steps to reproduce the behavior:

Go to ‘…’
Click on ‘…’
Scroll down to ‘…’
See error
Screenshots
If applicable, add screenshots to help explain your problem.

Device (please complete the following information):

Device: [e.g. Macbook Pro]
OS: [e.g. macOS 11]
Browser: [e.g. Chrome]
Browser Version [e.g. 88.0.4324.150 (Official Build) (x86_64)]

1 Like

I’m also having this issue.

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