mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
1080p releases without x264 or hdtv markers will be treated as HDTV instead of unknown
This commit is contained in:
parent
dcb1b76917
commit
3c732f5a5e
2 changed files with 8 additions and 1 deletions
|
@ -386,6 +386,12 @@ namespace NzbDrone.Core.Parser
|
|||
return result;
|
||||
}
|
||||
|
||||
if (normalizedName.Contains("1080p"))
|
||||
{
|
||||
result.Quality = Quality.HDTV1080p;
|
||||
return result;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue