From 6dcb1e959b224c58e94cf8521935e96f32593615 Mon Sep 17 00:00:00 2001 From: Michelle Date: Wed, 25 Mar 2026 09:55:47 +0100 Subject: [PATCH] feat: allow guests to start a room if `anyone_can_start` is enabled --- src/pages/GuestJoin.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/GuestJoin.jsx b/src/pages/GuestJoin.jsx index 7fb360f..b14f818 100644 --- a/src/pages/GuestJoin.jsx +++ b/src/pages/GuestJoin.jsx @@ -106,7 +106,7 @@ export default function GuestJoin() { toast.error(t('room.guestRecordingConsent')); return; } - if (!status.running) { + if (!status.running && !roomInfo?.anyone_can_start) { setWaiting(true); return; }