Fixed: Prevent endless loop when calling IndexerUrls for Torznab

This commit is contained in:
Qstick
2022-05-01 23:02:30 -05:00
parent bbc3e6df13
commit a0f7d5e309

View File

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