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:
Robbie Davis 2026-04-01 20:54:10 -04:00
parent 112bc590b5
commit 3b9877a9c1

View file

@ -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;