mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
New: Use PageSize reported by newznab/torznab caps instead of hardcoded 100.
ref Jackett/Jackett#27
This commit is contained in:
@@ -24,7 +24,10 @@ namespace NzbDrone.Core.Indexers.Newznab
|
||||
}
|
||||
|
||||
public override DownloadProtocol Protocol { get { return DownloadProtocol.Usenet; } }
|
||||
public override int PageSize { get { return 100; } }
|
||||
public override int PageSize
|
||||
{
|
||||
get { return _capabilitiesProvider.GetCapabilities(Settings).DefaultPageSize; }
|
||||
}
|
||||
|
||||
public override IIndexerRequestGenerator GetRequestGenerator()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user