Skip to content

Commit

Permalink
digitalcore: correct MST (Jackett#10299)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilike2burnthing authored Nov 26, 2020
1 parent 039d82e commit 565ba53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackett.Common/Indexers/DigitalCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ protected override async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuer
var tags = new List<string>();

release.MinimumRatio = 1.1;
release.MinimumSeedTime = 172800; // 48 hours
release.MinimumSeedTime = 432000; // 120 hours
release.Title = row.name;
release.Category = MapTrackerCatToNewznab(row.category.ToString());
release.Size = row.size;
Expand Down

0 comments on commit 565ba53

Please sign in to comment.