1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-30 11:47:28 +00:00

AggregateIndexer: set result limits to 1000

This commit is contained in:
kaso17 2017-08-17 09:50:10 +02:00
parent aa157cfcb9
commit 69aa38c1ff

View file

@ -25,5 +25,16 @@ namespace Jackett.Indexers.Meta
: base("AggregateSearch", "This feed includes all configured trackers", fallbackStrategyProvider, resultFilterProvider, configService, wc, l, new ConfigurationData(), ps, x => true)
{
}
public override TorznabCapabilities TorznabCaps
{
get
{
// increase the limits (workaround until proper paging is supported, issue #1661)
var caps = base.TorznabCaps;
caps.LimitsMax = caps.LimitsDefault = 1000;
return caps;
}
}
}
}