mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
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:
@@ -174,7 +174,9 @@ namespace Jackett.Common.Indexers
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
// Replace 4K quality tag with 2160p, so Sonarr etc. can properly parse it
|
||||
qualityData[1] = qualityData[1].Replace("4K", "2160p");
|
||||
|
||||
// Build title
|
||||
var title = string.Join(".", new List<string>
|
||||
{
|
||||
|
Reference in New Issue
Block a user