소스 검색

DVD and BDMV folders can not be served directly

Shadowghost 1 년 전
부모
커밋
7baa261b22
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Jellyfin.Api/Controllers/VideosController.cs

+ 1 - 1
Jellyfin.Api/Controllers/VideosController.cs

@@ -461,7 +461,7 @@ public class VideosController : BaseJellyfinApiController
         var outputPath = state.OutputFilePath;
 
         // Static stream
-        if (@static.HasValue && @static.Value)
+        if (@static.HasValue && @static.Value && !(state.MediaSource.VideoType == VideoType.BluRay || state.MediaSource.VideoType == VideoType.Dvd))
         {
             var contentType = state.GetMimeType("." + state.OutputContainer, false) ?? state.GetMimeType(state.MediaPath);