This repository was archived by the owner on Nov 25, 2022. It is now read-only.

Description
We have built an app for video conferencing and it's working on all devices except iPhone in safari browser, it's always showing endless loader in the box PFA, is there any way to fix this issue?
code:
const publisherOptionsMobile = {
publishAudio: true,
publishVideo: true,
width: 240,
borderRadius: 10,
height: 140,
insertMode: "append",
showControls: false
};
<OTSession
apiKey={apiKey}
sessionId={sessionId}
token={token}
>
<OTPublisher
properties={publisherOptions}
/>
</OTSession>
