mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
@@ -20,7 +20,6 @@ namespace Jackett.Common.Indexers.Abstract
|
|||||||
[ExcludeFromCodeCoverage]
|
[ExcludeFromCodeCoverage]
|
||||||
public abstract class SpeedAppTracker : BaseWebIndexer
|
public abstract class SpeedAppTracker : BaseWebIndexer
|
||||||
{
|
{
|
||||||
protected virtual string ItemsPerPage => "100";
|
|
||||||
protected virtual bool UseP2PReleaseName => false;
|
protected virtual bool UseP2PReleaseName => false;
|
||||||
private readonly Dictionary<string, string> _apiHeaders = new Dictionary<string, string>
|
private readonly Dictionary<string, string> _apiHeaders = new Dictionary<string, string>
|
||||||
{
|
{
|
||||||
@@ -89,7 +88,7 @@ namespace Jackett.Common.Indexers.Abstract
|
|||||||
//var categoryMapping = MapTorznabCapsToTrackers(query).Distinct().ToList();
|
//var categoryMapping = MapTorznabCapsToTrackers(query).Distinct().ToList();
|
||||||
var qc = new List<KeyValuePair<string, string>> // NameValueCollection don't support cat[]=19&cat[]=6
|
var qc = new List<KeyValuePair<string, string>> // NameValueCollection don't support cat[]=19&cat[]=6
|
||||||
{
|
{
|
||||||
{"itemsPerPage", ItemsPerPage},
|
{"itemsPerPage", "100"},
|
||||||
{"sort", "torrent.createdAt"},
|
{"sort", "torrent.createdAt"},
|
||||||
{"direction", "desc"}
|
{"direction", "desc"}
|
||||||
};
|
};
|
||||||
|
@@ -12,7 +12,6 @@ namespace Jackett.Common.Indexers
|
|||||||
[ExcludeFromCodeCoverage]
|
[ExcludeFromCodeCoverage]
|
||||||
public class RetroFlix : SpeedAppTracker
|
public class RetroFlix : SpeedAppTracker
|
||||||
{
|
{
|
||||||
protected override string ItemsPerPage => "90";
|
|
||||||
protected override bool UseP2PReleaseName => true;
|
protected override bool UseP2PReleaseName => true;
|
||||||
|
|
||||||
public override string[] LegacySiteLinks { get; protected set; } = {
|
public override string[] LegacySiteLinks { get; protected set; } = {
|
||||||
|
Reference in New Issue
Block a user