Gallery View Not Working "Update your browser"

I have successfully integrated the zoom meeting sdk and it was pretty good for 1 - 1 meeting but when other participant joins the camera shown is only the participant that talks. i want to show all the particpants

Update to this its still show update your browser even the browser is already up to date

We would need to see your code to be able to help :slight_smile:

            joinMeeting(){
                    this.meeting = this.$route.params.mn_number
                    console.log(this.meeting)
                    ZoomMtg.preLoadWasm()
                    ZoomMtg.prepareWebSDK()
                    ZoomMtg.init({
                        patchJsMedia: true,
                        success: (success) => {
                            const header = { alg: 'HS256', typ: 'JWT' };
                            const iat = Math.round(new Date().getTime() / 1000);
                            const payload = {
                                sdkKey: 'key',
                                appKey: 'key',
                                role: 1,
                                iat: Math.round(new Date().getTime() / 1000) - 30,
                                exp: iat + 60 * 60 * 2,
                                mn:this.meeting,
                                tokenExp:  iat + 60 * 60 * 2
                            };
                            const sHeader = JSON.stringify(header);
                            const sPayload = JSON.stringify(payload);
                            var sdkJWT = KJUR.jws.JWS.sign('HS256', sHeader, sPayload, 'skey');
                            console.log("meeting uid", this.meeting)
                            ZoomMtg.join({
                            signature: sdkJWT,
                            meetingNumber:this.meeting,
                            passWord: this.$route.params.passcode,
                            userName: this.$store.state.name,
                            sdkKey: "key",
                            success: (success) => {
                                console.log(success)
                            },
                            error: (error) => {
                                console.log(error)
                            }
                            })
                        },
                        error: (error) => {
                            console.log(error)
                        }
                        })
            }

here is my code

Have a look at this - Meeting SDK - web - SharedArrayBuffer

I added the stuff that the docs about shared buffer i added it on my .htaccess but all my images are now also blocked but the gallery vie did show

So the shared array fixed the gallery for you but is now blocking images? Where are the images stored? you will probably need to change the CORS settings for the image storage location.

im using AWS s3 and cloudfront right now i tested on live and it seem the sharedbuffer did not work again is there a other way or option