https://livekit.io logo
Title
l

lively-car-69687

05/25/2023, 12:29 PM
Hi. I use client-sdk-js . And when i connected to meet without any track (not creating and not pablishing) - other track didn't autoplay on ios16. When i cat try to .play() a get permission error. Do you know how to resolve this problem?
Hm, fixed it with creating new audio track but not publishing
p

polite-kilobyte-67570

05/25/2023, 1:51 PM
are you listening to
RoomEvent.AudioPlaybackStatusChanged
? this will notify you in case playback fails on the browser. to work around it you will have to call
room.startAudio()
initiated through a user-gesture (e.g. as a click handler on a button)
l

lively-car-69687

05/25/2023, 1:52 PM
@polite-kilobyte-67570 Thanks, i will try