Fixed: Remove PageSize from Nyaa
This commit is contained in:
parent
6831604276
commit
030c4b8f4c
|
@ -11,7 +11,6 @@ namespace NzbDrone.Core.Indexers.Nyaa
|
||||||
public override string Name => "Nyaa";
|
public override string Name => "Nyaa";
|
||||||
|
|
||||||
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
||||||
public override int PageSize => 100;
|
|
||||||
|
|
||||||
public Nyaa(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger, ILocalizationService localizationService)
|
public Nyaa(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger, ILocalizationService localizationService)
|
||||||
: base(httpClient, indexerStatusService, configService, parsingService, logger, localizationService)
|
: base(httpClient, indexerStatusService, configService, parsingService, logger, localizationService)
|
||||||
|
@ -20,7 +19,7 @@ namespace NzbDrone.Core.Indexers.Nyaa
|
||||||
|
|
||||||
public override IIndexerRequestGenerator GetRequestGenerator()
|
public override IIndexerRequestGenerator GetRequestGenerator()
|
||||||
{
|
{
|
||||||
return new NyaaRequestGenerator() { Settings = Settings, PageSize = PageSize };
|
return new NyaaRequestGenerator() { Settings = Settings };
|
||||||
}
|
}
|
||||||
|
|
||||||
public override IParseIndexerResponse GetParser()
|
public override IParseIndexerResponse GetParser()
|
||||||
|
|
Loading…
Reference in New Issue