fix: playlist
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2024-11-14 15:20:25 +00:00
parent 13059f04ae
commit 38e1e1e39c

View File

@ -42,7 +42,7 @@ public class PlaylistController : Controller
{
var streamManager = await _streamManagerFactory.ForStream(id);
var userStream = streamManager.GetStream();
if (userStream.Endpoint == default)
if (userStream.Endpoint == default || string.IsNullOrEmpty(hlsCtx))
{
Response.StatusCode = 404;
return;