mirror of
https://github.com/Radarr/Radarr
synced 2025-03-11 06:33:16 +00:00
Fixed: Pagination for TMDb lists containing a mix of media types
This commit is contained in:
parent
88127298ae
commit
74246df881
1 changed files with 6 additions and 5 deletions
|
@ -9,6 +9,11 @@ namespace NzbDrone.Core.ImportLists.TMDb.List
|
|||
{
|
||||
public class TMDbListImport : TMDbImportListBase<TMDbListSettings>
|
||||
{
|
||||
public override string Name => "TMDb List";
|
||||
public override bool Enabled => true;
|
||||
public override bool EnableAuto => false;
|
||||
public override int PageSize => 1;
|
||||
|
||||
public TMDbListImport(IRadarrCloudRequestBuilder requestBuilder,
|
||||
IHttpClient httpClient,
|
||||
IImportListStatusService importListStatusService,
|
||||
|
@ -20,10 +25,6 @@ namespace NzbDrone.Core.ImportLists.TMDb.List
|
|||
{
|
||||
}
|
||||
|
||||
public override string Name => "TMDb List";
|
||||
public override bool Enabled => true;
|
||||
public override bool EnableAuto => false;
|
||||
|
||||
public override IParseImportListResponse GetParser()
|
||||
{
|
||||
return new TMDbListParser();
|
||||
|
@ -31,7 +32,7 @@ namespace NzbDrone.Core.ImportLists.TMDb.List
|
|||
|
||||
public override IImportListRequestGenerator GetRequestGenerator()
|
||||
{
|
||||
return new TMDbListRequestGenerator()
|
||||
return new TMDbListRequestGenerator
|
||||
{
|
||||
RequestBuilder = _requestBuilder,
|
||||
Settings = Settings,
|
||||
|
|
Loading…
Add table
Reference in a new issue