mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-18 20:24:20 +01:00
Merge pull request #5980 from Maxr1998/fix-direct-play
Fix direct play for DirectPlayProfiles without any codecs set
This commit is contained in:
@@ -55,7 +55,8 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
{
|
{
|
||||||
if (profileContainers == null || profileContainers.Length == 0)
|
if (profileContainers == null || profileContainers.Length == 0)
|
||||||
{
|
{
|
||||||
return isNegativeList;
|
// Empty profiles always support all containers/codecs
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
var allInputContainers = SplitValue(inputContainer);
|
var allInputContainers = SplitValue(inputContainer);
|
||||||
|
|||||||
Reference in New Issue
Block a user