From ed5bed75383c2188aa6b926fae76941f8117683a Mon Sep 17 00:00:00 2001 From: ta264 Date: Wed, 28 Apr 2021 21:30:40 +0100 Subject: [PATCH] Temporarily answer to the old newznab url --- src/Prowlarr.Api.V1/Indexers/NewznabController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Prowlarr.Api.V1/Indexers/NewznabController.cs b/src/Prowlarr.Api.V1/Indexers/NewznabController.cs index 2ab124f0f..70c5be3b0 100644 --- a/src/Prowlarr.Api.V1/Indexers/NewznabController.cs +++ b/src/Prowlarr.Api.V1/Indexers/NewznabController.cs @@ -36,6 +36,7 @@ namespace NzbDrone.Api.V1.Indexers _downloadService = downloadService; } + [HttpGet("/api/v1/indexer/{id:int}/newznab")] [HttpGet("{id:int}/api")] public async Task GetNewznabResponse(int id, [FromQuery] NewznabRequest request) { @@ -80,6 +81,7 @@ namespace NzbDrone.Api.V1.Indexers } } + [HttpGet("/api/v1/indexer/{id:int}/download")] [HttpGet("{id:int}/download")] public async Task GetDownload(int id, string link, string file) {