From a2098f4dfccc00870fed8e7457a0f2f095a9f9c7 Mon Sep 17 00:00:00 2001 From: legop3 Date: Sun, 15 Mar 2026 23:02:17 -0400 Subject: [PATCH] fix thing --- server/src/services/videoAuthService.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); }