From 005081c52df9bb5c6d6dca834baa19fc5c4a6919 Mon Sep 17 00:00:00 2001 From: Mahmoud Almontasser Date: Sun, 3 Aug 2025 20:23:03 +0200 Subject: [PATCH] Fix video stream limit check condition to use IsOutputVideo property --- Jellyfin.Api/Controllers/DynamicHlsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Api/Controllers/DynamicHlsController.cs b/Jellyfin.Api/Controllers/DynamicHlsController.cs index 89d9a9a16b..a35c2ab54e 100644 --- a/Jellyfin.Api/Controllers/DynamicHlsController.cs +++ b/Jellyfin.Api/Controllers/DynamicHlsController.cs @@ -303,7 +303,7 @@ public class DynamicHlsController : BaseJellyfinApiController .ConfigureAwait(false); // Check video stream limits before starting transcoding - if (state.MediaSource?.VideoType is not null) + if (state.IsOutputVideo) { var userId = HttpContext.User.GetUserId(); if (!userId.IsEmpty())