fix video auth stuff

This commit is contained in:
legop3
2025-11-20 16:47:56 -05:00
parent ac634a4ab2
commit 3af8702d48
5 changed files with 53 additions and 12 deletions
+3 -1
View File
@@ -115,7 +115,9 @@ export default function RoomCameraFeed({ sessionInfo, label }) {
}
}, [status, sessionInfo?.url, scheduleRestart]);
const renderedStatus = !sessionInfo?.url
const renderedStatus = sessionInfo?.error
? `Error: ${sessionInfo.error}`
: !sessionInfo?.url
? 'Waiting for stream session'
: status === 'error'
? `Error: ${detail || 'unknown'}`