From 0533d384d10716f0b3523e64ec3961bbaaf4e04b Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Tue, 23 Jan 2024 10:00:03 +1300 Subject: [PATCH] filelist: add whitelist info to config. resolves #14993 --- .../Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs | 2 ++ 1 file changed, 2 insertions(+) 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."); }