1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-09 13:52:03 +00:00

myanonamouse: add MST and commented MR

This commit is contained in:
ilike2burnthing 2023-01-08 04:31:54 +00:00 committed by GitHub
parent c31ce0a8be
commit 462860e6b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -284,6 +284,9 @@ namespace Jackett.Common.Indexers
release.DownloadVolumeFactor = item.Value<int>("free") == 1 ? 0 : 1;
release.UploadVolumeFactor = 1;
// release.MinimumRatio = 1; // global MR is 1.0 but torrents must be seeded for 3 days regardless of ratio
release.MinimumSeedTime = 259200; // 72 hours
releases.Add(release);
}
}