Cannot connect to audio in Chrome after joining from waiting room

Description
After being admitted to the meeting from the waiting room when using Chrome v115.0.5790.171 the client is unable to connect to audio. If the client refreshes the page though, audio does work when they are reconnected to the meeting. Audio is fine on the preview page and in the waiting room. If the waiting room is disabled and the user goes directly into the meeting the audio works fine.

Firefox does not exhibit this behavior and works correctly.

Browser Console Error
Warning: Each child in a list should have a unique “key” prop.

Check the top-level render call using

. See https://fb.me/react-warning-keys for more information.
in Connect(Component)
in Unknown (created by Connect(Component))
in Connect(Component)
in div
in div
in Unknown (created by Connect(Component))
in Connect(Component) (created by u)
in div (created by u)
in div (created by u)
in u (created by i)
in i
in Unknown (created by Connect(Component))
in Connect(Component) (created by d)
in div (created by d)
in d (created by Connect(d))
in Connect(d) (created by a)
in div (created by a)
in a (created by Connect(a))
in Connect(a) (created by l)
in div (created by l)
in Unknown (created by l)
in l

Which Web Meeting SDK version?
2.15.0

Meeting SDK Code Snippets
ZoomMtg.init({
disableInvite: true,
disableRecord: true,
isLockBottom: true,
isSupportBreakout: false,
meetingInfo: ,
screenShare: false,
showMeetingHeader: false,
enableHD: false,
enableFullHD: false,
debug: true,
leaveUrl: “/complete”,
success: (success) => {

    ZoomMtg.join({
        sdkKey: "...",
        signature: "...",
        meetingNumber: "...",
        passWord: "...",
        userName: "...",

        success: (success) => {
            console.log("SUCCESS JOIN!");
        },
        error: (error) => {
            console.log("ERROR")
        },
    });
}

});

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

  1. Using Chrome v115.0.5790.171 join a meeting using the Meeting SDK
  2. Once you are in the waiting room let the host admit you into the meeting
  3. When you join the meeting video connect successfully but audio does not.

Troubleshooting Routes

Device (please complete the following information):

  • Device: Desktop PC
  • OS: Windows 10
  • Browser: Chrome
  • Browser Version: 115.0.5790.171

Additional context
Add any other context about the problem here.

Possibly related to this issue? It sounds like similar behavior.

https://devforum.zoom.us/t/join-audio-by-computer-disabled-on-joining-a-meeting-or-switching-to-from-a-breakout-room/88966?u=tkapinus

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