From cb0593bcfd9096d93b4aad119c3f2f6a6bd4f7ac Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Mon, 7 Dec 2020 04:22:39 +0000 Subject: [PATCH] scenetime: correct MR 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 --- src/Jackett.Common/Indexers/SceneTime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/SceneTime.cs b/src/Jackett.Common/Indexers/SceneTime.cs index 90b4c3dda..b9f5f1182 100644 --- a/src/Jackett.Common/Indexers/SceneTime.cs +++ b/src/Jackett.Common/Indexers/SceneTime.cs @@ -167,7 +167,7 @@ namespace Jackett.Common.Indexers { // 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");