From 58ca5ee886951d56de37f48c6e89bb08d95afa2a Mon Sep 17 00:00:00 2001 From: Robbie Davis Date: Tue, 13 Jan 2026 16:08:45 -0500 Subject: [PATCH] Bump minimum Listenarr version to 0.2.47 Updated the MinimumApplicationVersion in ListenarrV1Proxy from 0.2.46 to 0.2.47 to require the newer version of Listenarr that will have prowlarr support --- src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs b/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs index 44ad81d0b..c5499cb43 100644 --- a/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs +++ b/src/NzbDrone.Core/Applications/Listenarr/ListenarrV1Proxy.cs @@ -24,7 +24,7 @@ public interface IListenarrV1Proxy public class ListenarrV1Proxy : IListenarrV1Proxy { - private static Version MinimumApplicationVersion => new(0, 2, 46, 0); + private static Version MinimumApplicationVersion => new(0, 2, 47, 0); private const string AppApiRoute = "/api/v1"; private const string AppIndexerApiRoute = $"{AppApiRoute}/indexer";