mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
retroflix: MST is now 5d
This commit is contained in:
@@ -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>();
|
||||
|
@@ -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/"
|
||||
|
Reference in New Issue
Block a user