Describe the bug
It looks like useSession miss usage of usePersistentUserChoices and so if a call is set up with PreJoin, the actual settings in the room are reset to some defaults.
Reproduction
const Call = () => {
const session = useSession(...);
const showPreJoin = true;
// ... joining logic ...
return (
{showPreJoin && <PreJoin/>}
{!showPreJoin && (
<SessionProvider session={session}>
<VideoConference />
</SessionProvider>
)}
);
}
Logs
System Info
Ubuntu 24.04, Chrome 145.
Severity
annoyance
Additional Information
No response
Describe the bug
It looks like
useSessionmiss usage ofusePersistentUserChoicesand so if a call is set up withPreJoin, the actual settings in the room are reset to some defaults.Reproduction
Logs
System Info
Severity
annoyance
Additional Information
No response