Skip to content

Commit

Permalink
scenetime: correct MR
Browse files Browse the repository at this point in the history
0.3 is their global MR, "Scenetime is a ratio-based tracker which means you need to seed back whatever you grab from the site, either to a 1:1 ratio or 72 hours. So, this means if you grab a 1 gig file, you need to keep it seeding/running in your client until either you have seeded to someone else 1.0 gigs or for 72 hours total."
https://www.scenetime.com/forums.php?action=viewtopic&subforum=12&topicid=11043
  • Loading branch information
ilike2burnthing authored Dec 7, 2020
1 parent 46a6b22 commit cb0593b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackett.Common/Indexers/SceneTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private List<ReleaseInfo> ParseResponse(TorznabQuery query, string htmlResponse)
{
// TODO convert to initializer
var release = new ReleaseInfo();
release.MinimumRatio = 0.31;
release.MinimumRatio = 1;
release.MinimumSeedTime = 259200; // 72 hours

var qCatLink = row.Children[categoryIndex].QuerySelector("a");
Expand Down

0 comments on commit cb0593b

Please sign in to comment.