retroflix: MST is now 5d

This commit is contained in:
Garfield69
2022-11-28 13:46:12 +13:00
parent 784a631405
commit e593689172
2 changed files with 4 additions and 1 deletions

View File

@@ -21,6 +21,8 @@ namespace Jackett.Common.Indexers.Abstract
public abstract class SpeedAppTracker : BaseWebIndexer
{
protected virtual bool UseP2PReleaseName => false;
protected virtual int minimumSeedTime => 172800; // 48h
private readonly Dictionary<string, string> _apiHeaders = new Dictionary<string, string>
{
{"Accept", "application/json"},
@@ -166,7 +168,7 @@ namespace Jackett.Common.Indexers.Abstract
DownloadVolumeFactor = dlVolumeFactor,
UploadVolumeFactor = ulVolumeFactor,
MinimumRatio = 1,
MinimumSeedTime = 172800 // 48 hours
MinimumSeedTime = minimumSeedTime
};
if (release.Genres == null)
release.Genres = new List<string>();

View File

@@ -13,6 +13,7 @@ namespace Jackett.Common.Indexers
public class RetroFlix : SpeedAppTracker
{
protected override bool UseP2PReleaseName => true;
protected override int minimumSeedTime => 432000; // 120h
public override string[] LegacySiteLinks { get; protected set; } = {
"https://retroflix.net/"