mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-04 23:03:07 +01:00
Fixed: API version for Sonarr Get Indexer method
This commit is contained in:
parent
2f6d9b938c
commit
07d5d8c60a
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ public SonarrIndexer GetIndexer(int indexerId, SonarrSettings settings)
|
|||
{
|
||||
try
|
||||
{
|
||||
var request = BuildRequest(settings, $"/api/v1/indexer/{indexerId}", HttpMethod.GET);
|
||||
var request = BuildRequest(settings, $"/api/v3/indexer/{indexerId}", HttpMethod.GET);
|
||||
return Execute<SonarrIndexer>(request);
|
||||
}
|
||||
catch (HttpException ex)
|
||||
|
|
|
|||
Loading…
Reference in a new issue