mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added WEBDL 1080p
New: WEBDL 720p and 1080p are now separated
This commit is contained in:
parent
b40c6ba7b8
commit
09665c2920
17 changed files with 92 additions and 55 deletions
|
@ -297,7 +297,12 @@ namespace NzbDrone.Core
|
|||
}
|
||||
if (normalizedName.Contains("webdl"))
|
||||
{
|
||||
result.Quality = QualityTypes.WEBDL;
|
||||
if (normalizedName.Contains("1080p"))
|
||||
{
|
||||
result.Quality = QualityTypes.WEBDL1080p;
|
||||
return result;
|
||||
}
|
||||
result.Quality = QualityTypes.WEBDL720p;
|
||||
return result;
|
||||
}
|
||||
if (normalizedName.Contains("x264") || normalizedName.Contains("h264") || normalizedName.Contains("720p"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue