Always consider HLS supported for direct play

This commit is contained in:
Janne Mareike Koschinski 2023-05-23 03:10:10 +02:00
parent dd57303a27
commit f9d1af1d28
No known key found for this signature in database
GPG Key ID: D214D7C4032C7C6C
1 changed files with 1 additions and 1 deletions

View File

@ -1226,7 +1226,7 @@ namespace MediaBrowser.Model.Dlna
TranscodeReason audioCodecProfileReasons = 0;
// Check container type
if (!directPlayProfile.SupportsContainer(container))
if (!directPlayProfile.SupportsContainer(container) && container != "hls")
{
directPlayProfileReasons |= TranscodeReason.ContainerNotSupported;
}