Skip to content

Commit

Permalink
Fix Nebulance Settings copy paste issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Qstick committed Jun 13, 2021
1 parent f6a5f88 commit 6ce35f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NzbDrone.Core/Indexers/Definitions/Nebulance.cs
Expand Up @@ -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()
Expand Down

0 comments on commit 6ce35f6

Please sign in to comment.