mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
Fixed: xvid not always detected correctly (#11138)
This commit is contained in:
@@ -210,7 +210,7 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
||||
|
||||
if (videoFormat == "mpeg4" || videoFormat.Contains("msmpeg4"))
|
||||
{
|
||||
if (videoCodecID == "XVID")
|
||||
if (videoCodecID.ToUpperInvariant() == "XVID")
|
||||
{
|
||||
return "XviD";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user