Breakout room not working on Web Sdk

Description
A clear and concise description of what the question is.
I’m using the zoomus/web sdk and when the host has initiated the breakout room I’m unable to join the room The screen goes black with the error message.
Browser Console Error
The full error message or issue you are running into.
react-dom.development.js?ac89:8881 Uncaught DOMException: Failed to execute ‘removeChild’ on ‘Node’: The node to be removed is not a child of this node.
Which Web Meeting SDK version?
Knowing the version can help us to identify your issue faster. [e.g. 1.9.9]
2.2.0
Meeting SDK Code Snippets
The code snippets that are causing the error / issue so we can reproduce.

    ZoomMtg.init({
        debug: false,
        leaveUrl: meetConfig.leaveUrl,
        screenShare: false,
        isSupportAV: true,
        disableJoinAudio: false,
        audioPanelAlwaysOpen: false,
        disablePreview: true,
        disableVoIP: false,
        isSupportBreakout: true,
        disableInvite: true,
        showMeetingHeader: false,
        videoHeader: false,
        meetingInfo: [
            'topic',
            'host',
        ],
        success: function() {
            ZoomMtg.inMeetingServiceListener('onUserLeave', function (data) {
    })
            ZoomMtg.join({
                meetingNumber: meetConfig.meetingNumber,
                userName: meetConfig.userName,
                userEmail: meetConfig.userEmail,
                passWord: meetConfig.passWord,
                signature: signature,
                apiKey: meetConfig.apiKey,
                tk: meetConfig.registrantToken,
                success: function() {
                    // close popups functions
                },

                error: function(e) {

                    console.log("err:",e)

                }

            })

        },

    })

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

  1. Go inside the meeting
  2. Click on join button in breakout room
  3. screen goes blank
  4. Check the console 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)]
    Version 99.0.4844.51 (Official Build) (64-bit)

Additional context
Add any other context about the problem here.

Hi @alaguv

Thanks for reaching out to the Zoom Developer Forum, I am happy to help here!
Unfortunately I was not able to replicate the behavior you are reporting.
Can you confirm that you are testing with our sample app:

Can you share the browser version that you are using?
Best,
Elisa

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