mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-26 01:11:33 +01:00
Update src/NzbDrone.Core/ImportLists/Discogs/DiscogsLists.cs
Co-authored-by: Bogdan <mynameisbogdan@users.noreply.github.com>
This commit is contained in:
parent
0281695754
commit
c6f14c3975
1 changed files with 2 additions and 4 deletions
|
|
@ -24,14 +24,12 @@ public DiscogsLists(IHttpClient httpClient,
|
|||
|
||||
public override IImportListRequestGenerator GetRequestGenerator()
|
||||
{
|
||||
return new DiscogsListsRequestGenerator { Settings = Settings };
|
||||
return new DiscogsListsRequestGenerator(Settings);
|
||||
}
|
||||
|
||||
public override IParseImportListResponse GetParser()
|
||||
{
|
||||
var parser = new DiscogsListsParser();
|
||||
parser.SetContext(_httpClient, Settings, _logger);
|
||||
return parser;
|
||||
return new DiscogsListsParser(Settings, _httpClient, _logger);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue