1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-28 19:04:09 +00:00

newnewpct: fix quality. resolves #8407 (#8565)

This commit is contained in:
Diego Heras 2020-05-09 10:21:57 +02:00 committed by GitHub
parent 1f4c920446
commit d41aa3144b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -531,6 +531,8 @@ namespace Jackett.Common.Indexers
quality += " x265";
if (titleLower.Contains("dvdfull") || titleLower.Contains("dvd5") || titleLower.Contains("dvd9"))
quality = "DVDR";
if (titleLower.Contains("[web screener]") || titleLower.Contains("[hd-tc]"))
quality = "TS Screener";
}
else if (titleParts.Length > 2)
quality = titleParts[1].Replace("]", "").Replace("MKV", "").Trim();