MoreThanTV: switch 4K with 2160p (#5484)

MTV lists 2160p torrents like " ... / 4K", which tools like Sonarr falsely parse as 480p. This should fix it.
This commit is contained in:
sunn0
2019-06-13 21:21:03 +00:00
committed by garfield69
parent dffefa1044
commit 5a822fe5ab

View File

@@ -174,6 +174,8 @@ namespace Jackett.Common.Indexers
break; break;
} }
// Replace 4K quality tag with 2160p, so Sonarr etc. can properly parse it
qualityData[1] = qualityData[1].Replace("4K", "2160p");
// Build title // Build title
var title = string.Join(".", new List<string> var title = string.Join(".", new List<string>