diff --git a/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataCookie.cs b/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataCookie.cs index 6fa4e5579..0a40979e2 100644 --- a/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataCookie.cs +++ b/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataCookie.cs @@ -4,21 +4,16 @@ namespace Jackett.Common.Models.IndexerConfig public class ConfigurationDataCookie : ConfigurationData { public StringItem Cookie { get; private set; } - public DisplayItem CookieHint { get; private set; } - public DisplayItem CookieExample { get; private set; } + public DisplayItem CookieInstructions { get; private set; } public ConfigurationDataCookie() { Cookie = new StringItem { Name = "Cookie" }; - CookieHint = new DisplayItem( - "
  1. Login to this tracker in your browser
  2. Open the developer console, go the network tab
  3. Find 'cookie' in the request headers
  4. Copy & paste it to here
") + CookieInstructions = new DisplayItem( + "Please enter the cookie for the site manually. See here on how get the cookies." + + "
Example cookie header (usually longer than this):
PHPSESSID=8rk27odm; ipsconnect_63ad9c=1; more_stuff=etc;") { - Name = "CookieHint" - }; - CookieExample = new DisplayItem( - "Example cookie header (usually longer than this):
PHPSESSID=8rk27odm; ipsconnect_63ad9c=1; more_stuff=etc;") - { - Name = "CookieExample" + Name = "Cookie Instructions" }; } }