diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs index 061be74f2..14a02793b 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs @@ -5,12 +5,14 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke [ExcludeFromCodeCoverage] internal class ConfigurationDataFileList : ConfigurationDataUserPasskey { + public DisplayInfoConfigurationItem WhiteList { get; set; } public BoolConfigurationItem Freeleech { get; set; } public DisplayInfoConfigurationItem CatWarning { get; set; } public ConfigurationDataFileList() : base("Note this is not your password.") { + WhiteList = new DisplayInfoConfigurationItem("WhiteList", "Before using this indexer you need to fill the Whitelist IP for API on Filelist profile settings page for it to work."); Freeleech = new BoolConfigurationItem("Search freeleech only") { Value = false }; CatWarning = new DisplayInfoConfigurationItem("CatWarning", "When mapping TV ensure you add category 5000 in addition to 5030, 5040."); }