From 3b9877a9c1167f25043eb8f52599b118b90ebcd3 Mon Sep 17 00:00:00 2001 From: Robbie Davis Date: Wed, 1 Apr 2026 20:54:10 -0400 Subject: [PATCH] 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. --- src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs b/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs index ad0823ef7..c541f117b 100644 --- a/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs +++ b/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs @@ -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;