mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
DVD and BDMV folders can not be served directly
This commit is contained in:
parent
52c79c050b
commit
7baa261b22
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue