feat: allow guests to start a room if anyone_can_start is enabled
All checks were successful
Build & Push Docker Image / build (push) Successful in 4m58s

This commit is contained in:
2026-03-25 09:55:47 +01:00
parent bb2d179871
commit 6dcb1e959b

View File

@@ -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;
}