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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;