diff --git a/pages/custom/index.tsx b/pages/custom/index.tsx index 96da862..1c645fa 100644 --- a/pages/custom/index.tsx +++ b/pages/custom/index.tsx @@ -49,7 +49,7 @@ export default function CustomRoomConnection() { const connectOptions = useMemo((): RoomConnectOptions => { return { - autoSubscribe: false, + autoSubscribe: true, }; }, []); diff --git a/pages/rooms/[name].tsx b/pages/rooms/[name].tsx index d6fe13d..01d8d3c 100644 --- a/pages/rooms/[name].tsx +++ b/pages/rooms/[name].tsx @@ -152,7 +152,7 @@ const ActiveRoom = ({ roomName, userChoices, onLeave }: ActiveRoomProps) => { } const connectOptions = useMemo((): RoomConnectOptions => { return { - autoSubscribe: false, + autoSubscribe: true, }; }, []);