From a0f7d5e30918854bb07625e9690613cbd288bb76 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 1 May 2022 23:02:30 -0500 Subject: [PATCH] Fixed: Prevent endless loop when calling IndexerUrls for Torznab --- src/NzbDrone.Core/Indexers/Definitions/Torznab/Torznab.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/NzbDrone.Core/Indexers/Definitions/Torznab/Torznab.cs b/src/NzbDrone.Core/Indexers/Definitions/Torznab/Torznab.cs index a7a97ea8e..47d9584ff 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Torznab/Torznab.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Torznab/Torznab.cs @@ -56,6 +56,11 @@ namespace NzbDrone.Core.Indexers.Torznab return new string[] { Settings.BaseUrl }; } + protected override TorznabSettings GetDefaultBaseUrl(TorznabSettings settings) + { + return settings; + } + public IndexerCapabilities GetCapabilitiesFromSettings() { var caps = new IndexerCapabilities();