Fixed: (LazyLibrarian) Use listNabProviders instead of listProviders

This commit is contained in:
Qstick
2021-12-06 16:37:16 -06:00
parent 3b7b72d4e1
commit d2cf060473

View File

@@ -37,7 +37,7 @@ namespace NzbDrone.Core.Applications.LazyLibrarian
public List<LazyLibrarianIndexer> GetIndexers(LazyLibrarianSettings settings)
{
var request = BuildRequest(settings, "/api", "listProviders", HttpMethod.GET);
var request = BuildRequest(settings, "/api", "listNabProviders", HttpMethod.GET);
var response = Execute<LazyLibrarianIndexerResponse>(request);