mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (Nebulance) Changed MinimumSeedTime according to their H&R rules
This commit is contained in:
@@ -49,9 +49,9 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||||||
var caps = new IndexerCapabilities
|
var caps = new IndexerCapabilities
|
||||||
{
|
{
|
||||||
TvSearchParams = new List<TvSearchParam>
|
TvSearchParams = new List<TvSearchParam>
|
||||||
{
|
{
|
||||||
TvSearchParam.Q, TvSearchParam.Season, TvSearchParam.Ep, TvSearchParam.ImdbId, TvSearchParam.TvMazeId
|
TvSearchParam.Q, TvSearchParam.Season, TvSearchParam.Ep, TvSearchParam.ImdbId, TvSearchParam.TvMazeId
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
caps.Categories.AddCategoryMapping(1, NewznabStandardCategory.TV);
|
caps.Categories.AddCategoryMapping(1, NewznabStandardCategory.TV);
|
||||||
@@ -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; }
|
||||||
|
Reference in New Issue
Block a user