mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
For now, always encode mp4
This commit is contained in:
parent
a05a947fcf
commit
3e33822d1a
@ -28,7 +28,7 @@ namespace MediaBrowser.Api.HttpHandlers
|
||||
|
||||
// For now we won't allow these to pass through.
|
||||
// Later we'll add some intelligence to allow it when possible
|
||||
if (currentFormat.Equals("mkv", StringComparison.OrdinalIgnoreCase) || currentFormat.Equals("m4v", StringComparison.OrdinalIgnoreCase))
|
||||
if (currentFormat.Equals("mp4", StringComparison.OrdinalIgnoreCase) || currentFormat.Equals("mkv", StringComparison.OrdinalIgnoreCase) || currentFormat.Equals("m4v", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user