Fix Nebulance Settings copy paste issues

This commit is contained in:
Qstick 2021-06-13 17:49:15 -04:00 committed by GitHub
parent f6a5f887ce
commit 6ce35f6a24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -289,13 +289,13 @@ public NebulanceSettings()
TwoFactorAuth = "";
}
[FieldDefinition(1, Label = "Username", Advanced = true, HelpText = "Site username")]
[FieldDefinition(1, Label = "Username", HelpText = "Site username")]
public string Username { get; set; }
[FieldDefinition(1, Label = "Password", Advanced = true, HelpText = "Site Password")]
[FieldDefinition(2, Label = "Password", HelpText = "Site Password")]
public string Password { get; set; }
[FieldDefinition(1, Label = "Two Factor Auth", Advanced = true, HelpText = "Two-Factor Auth")]
[FieldDefinition(3, Label = "Two Factor Auth", HelpText = "Two-Factor Auth")]
public string TwoFactorAuth { get; set; }
public NzbDroneValidationResult Validate()