From 7b23f17a680153030379ca107c185ca31e61fd9e Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Sun, 7 Jul 2019 09:48:30 +1200 Subject: [PATCH] abnormal, norbits, nordicbits: mask password on config. resolves #5607 --- .../Models/IndexerConfig/Bespoke/ConfigurationDataAbnormal.cs | 4 ++-- .../Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs | 4 ++-- .../IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAbnormal.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAbnormal.cs index 39bd0db17..2eb741bf0 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAbnormal.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAbnormal.cs @@ -33,8 +33,8 @@ AuthKey = new HiddenItem { Name = "AuthKey", Value = "" }; TorrentPass = new HiddenItem { Name = "TorrentPass", Value = "" }; CredentialsWarning = new DisplayItem("Credentials Configuration (Private Tracker),

") { Name = "Credentials" }; - Username = new StringItem { Name = "Username (Required)", Value = "" }; - Password = new StringItem { Name = "Password (Required)", Value = "" }; + Username = new StringItem { Name = "Username", Value = "" }; + Password = new StringItem { Name = "Password", Value = "" }; PagesWarning = new DisplayItem("Preferences Configuration (Tweak your search settings),

") { Name = "Preferences" }; Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" }; ReplaceMulti = new StringItem() { Name = "Replace MULTI", Value = "MULTI.FRENCH" }; diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs index 348d0288f..9051508ea 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs @@ -27,8 +27,8 @@ public ConfigurationDataNorbits() { CredentialsWarning = new DisplayItem("Credentials Configuration (Private Tracker),

") { Name = "Credentials" }; - Username = new StringItem { Name = "Username (Required)", Value = "" }; - Password = new StringItem { Name = "Password (Required)", Value = "" }; + Username = new StringItem { Name = "Username", Value = "" }; + Password = new StringItem { Name = "Password", Value = "" }; PagesWarning = new DisplayItem("Preferences Configuration (Tweak your search settings),

") { Name = "Preferences" }; Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" }; SecurityWarning = new DisplayItem("Security Configuration (Read this area carefully !),

") { Name = "Security" }; diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs index 8a36bb914..5b0934d4e 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs @@ -27,8 +27,8 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke public ConfigurationDataNordicbits() { CredentialsWarning = new DisplayItem("Credentials Configuration (Private Tracker),

") { Name = "Credentials" }; - Username = new StringItem { Name = "Username (Required)", Value = "" }; - Password = new StringItem { Name = "Password (Required)", Value = "" }; + Username = new StringItem { Name = "Username", Value = "" }; + Password = new StringItem { Name = "Password", Value = "" }; PagesWarning = new DisplayItem("Preferences Configuration (Tweak your search settings),

") { Name = "Preferences" }; Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" }; SecurityWarning = new DisplayItem("Security Configuration (Read this area carefully !),

") { Name = "Security" };