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:
parent
aa157cfcb9
commit
69aa38c1ff
1 changed files with 11 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue