Fixed: Ignore Cardigann version of HDBits

This commit is contained in:
Qstick
2021-05-02 16:10:13 -04:00
committed by GitHub
parent d847916914
commit 2b920ac5f7

View File

@@ -24,7 +24,7 @@ namespace NzbDrone.Core.IndexerVersions
public class IndexerDefinitionUpdateService : IIndexerDefinitionUpdateService, IExecute<IndexerDefinitionUpdateCommand>
{
private const int DEFINITION_VERSION = 1;
private readonly List<string> _defintionBlacklist = new List<string>() { "blutopia", "beyond-hd", "beyond-hd-oneurl" };
private readonly List<string> _defintionBlacklist = new List<string>() { "blutopia", "beyond-hd", "beyond-hd-oneurl", "hdbits" };
private readonly IHttpClient _httpClient;
private readonly IAppFolderInfo _appFolderInfo;