From 1f8f52ac9b962c1681edf5e4a7aedf06fc5f4e22 Mon Sep 17 00:00:00 2001 From: bdegier Date: Tue, 17 Feb 2015 15:01:28 +0100 Subject: [PATCH] Added NZBFinder.ws as optional Indexer Established indexer. Been around for 2+ years. --- src/NzbDrone.Core/Indexers/Newznab/Newznab.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs b/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs index cdac2c88d..94d5b648e 100644 --- a/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs +++ b/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs @@ -33,6 +33,7 @@ namespace NzbDrone.Core.Indexers.Newznab get { yield return GetDefinition("Nzbs.org", GetSettings("http://nzbs.org", 5000)); + yield return GetDefinition("NZBFinder.ws", GetSettings("https://www.nzbfinder.ws")); yield return GetDefinition("Nzb.su", GetSettings("https://api.nzb.su")); yield return GetDefinition("Dognzb.cr", GetSettings("https://api.dognzb.cr")); yield return GetDefinition("OZnzb.com", GetSettings("https://api.oznzb.com"));