mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 04:30:26 +02:00
Bump Listenarr min version and update indexer route
Increase the minimum Listenarr application version to 0.2.65.0 and change the indexer API route from /api/v1/indexer to /api/v1/prowlarr/indexer. This will will keep things separated and more maintainable.
This commit is contained in:
parent
112bc590b5
commit
3b9877a9c1
1 changed files with 2 additions and 2 deletions
|
|
@ -23,10 +23,10 @@ public interface IListenarrV1Proxy
|
|||
|
||||
public class ListenarrV1Proxy : IListenarrV1Proxy
|
||||
{
|
||||
private static Version MinimumApplicationVersion => new(0, 2, 48, 0);
|
||||
private static Version MinimumApplicationVersion => new(0, 2, 65, 0);
|
||||
|
||||
private const string AppApiRoute = "/api/v1";
|
||||
private const string AppIndexerApiRoute = $"{AppApiRoute}/indexer";
|
||||
private const string AppIndexerApiRoute = $"{AppApiRoute}/prowlarr/indexer";
|
||||
|
||||
private readonly IHttpClient _httpClient;
|
||||
private readonly Logger _logger;
|
||||
|
|
|
|||
Loading…
Reference in a new issue