diff --git a/server/src/services/videoAuthService.js b/server/src/services/videoAuthService.js index fe88703f..d1e9abd2 100644 --- a/server/src/services/videoAuthService.js +++ b/server/src/services/videoAuthService.js @@ -122,7 +122,8 @@ app.post('/mediamtx/auth', (req, res) => { }); } - if (action === 'read' && protocol === 'srt' && streamInfo?.id) { + // Rover forward-listener uses SRT read without session tokens; allow these reads. + if (action === 'read' && protocol === 'srt') { return res.status(200).end(); }