diff --git a/src/Jackett/Indexers/BitMeTV.cs b/src/Jackett/Indexers/BitMeTV.cs index bd1faddc5e8c41f8fa3fef01ac53ddd81a2b6b18..ae83490e9898b3242a40da0e969c68717c59264b 100644 --- a/src/Jackett/Indexers/BitMeTV.cs +++ b/src/Jackett/Indexers/BitMeTV.cs @@ -42,7 +42,7 @@ namespace Jackett.Indexers client: c, logger: l, p: ps, - configData: new ConfigurationDataCaptchaLogin()) + configData: new ConfigurationDataCaptchaLogin("Ensure that you have the 'Force SSL' option set to 'yes' in your profile on the BitMeTv webpage.")) { } diff --git a/src/Jackett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs b/src/Jackett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs index a3ae9b89621b2c2c2e8bd48f45db8936137bf93c..d19c90443106284be43cfc00e07d269c9526e8bd 100644 --- a/src/Jackett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs +++ b/src/Jackett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs @@ -18,13 +18,17 @@ namespace Jackett.Models.IndexerConfig public HiddenItem CaptchaCookie { get; private set; } - public ConfigurationDataCaptchaLogin() + public DisplayItem Instructions { get; private set; } + + /// <param name="instructionMessageOptional">Enter any instructions the user will need to setup the tracker</param> + public ConfigurationDataCaptchaLogin(string instructionMessageOptional = null) { Username = new StringItem { Name = "Username" }; Password = new StringItem { Name = "Password" }; CaptchaImage = new ImageItem { Name = "Captcha Image" }; CaptchaText = new StringItem { Name = "Captcha Text" }; CaptchaCookie = new HiddenItem("") { Name = "Captcha Cookie" }; + Instructions = new DisplayItem(instructionMessageOptional) { Name = "" }; } } }