mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
BitMeTv: Add instructions
BitMeTv: Add instructions to turn on SSL
This commit is contained in:
parent
7312c8c230
commit
189483b2b7
2 changed files with 6 additions and 2 deletions
|
@ -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."))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -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 = "" };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue