Fixed: (Nebulance) Changed MinimumSeedTime according to their H&R rules

This commit is contained in:
Bogdan
2022-12-27 01:48:29 +02:00
committed by GitHub
parent 29e7cc06a1
commit d9098b612e

View File

@@ -213,7 +213,7 @@ namespace NzbDrone.Core.Indexers.Definitions
Seeders = ParseUtil.CoerceInt(row.Seed), Seeders = ParseUtil.CoerceInt(row.Seed),
Peers = ParseUtil.CoerceInt(row.Seed) + ParseUtil.CoerceInt(row.Leech), Peers = ParseUtil.CoerceInt(row.Seed) + ParseUtil.CoerceInt(row.Leech),
MinimumRatio = 0, // ratioless MinimumRatio = 0, // ratioless
MinimumSeedTime = 86400, // 24 hours MinimumSeedTime = row.Category.ToLower() == "season" ? 432000 : 86400, // 120 hours for seasons and 24 hours for episodes
DownloadVolumeFactor = 0, // ratioless tracker DownloadVolumeFactor = 0, // ratioless tracker
UploadVolumeFactor = 1 UploadVolumeFactor = 1
}; };
@@ -272,6 +272,8 @@ namespace NzbDrone.Core.Indexers.Definitions
[JsonProperty(PropertyName = "rls_name")] [JsonProperty(PropertyName = "rls_name")]
public string ReleaseTitle { get; set; } public string ReleaseTitle { get; set; }
public string Title { get; set; } public string Title { get; set; }
[JsonProperty(PropertyName = "cat")]
public string Category { get; set; }
public string Size { get; set; } public string Size { get; set; }
public string Seed { get; set; } public string Seed { get; set; }
public string Leech { get; set; } public string Leech { get; set; }