diff --git a/src/Jackett.Common/Indexers/BeyondHDAPI.cs b/src/Jackett.Common/Indexers/BeyondHDAPI.cs index 1361f8591..f605f09ba 100644 --- a/src/Jackett.Common/Indexers/BeyondHDAPI.cs +++ b/src/Jackett.Common/Indexers/BeyondHDAPI.cs @@ -50,7 +50,7 @@ namespace Jackett.Common.Indexers logger: l, p: ps, cacheService: cs, - configData: new ConfigurationDataAPIKeyAndRSSKey()) + configData: new ConfigurationDataAPIKeyAndRSSKey("Find the API and RSS keys under your security settings (your profile picture -> my security)")) { Encoding = Encoding.UTF8; Language = "en-US"; diff --git a/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataAPIKeyAndRSSKey.cs b/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataAPIKeyAndRSSKey.cs index 0e3982f6f..0de383a37 100644 --- a/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataAPIKeyAndRSSKey.cs +++ b/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataAPIKeyAndRSSKey.cs @@ -4,11 +4,13 @@ namespace Jackett.Common.Models.IndexerConfig { public StringConfigurationItem ApiKey { get; private set; } public StringConfigurationItem RSSKey { get; private set; } + public DisplayInfoConfigurationItem Instructions { get; private set; } - public ConfigurationDataAPIKeyAndRSSKey() + public ConfigurationDataAPIKeyAndRSSKey(string instructionMessageOptional = null) { ApiKey = new StringConfigurationItem("API Key"); RSSKey = new StringConfigurationItem("RSS Key"); + Instructions = new DisplayInfoConfigurationItem("", instructionMessageOptional); } } }