From ca1ef7e15176ba63816015bf971448cccd5fe45f Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 11 Apr 2018 23:00:39 -0400 Subject: [PATCH] Fixed: Hide password field text for PlexClient notifications --- src/NzbDrone.Core/Notifications/Plex/PlexClientSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexClientSettings.cs b/src/NzbDrone.Core/Notifications/Plex/PlexClientSettings.cs index d10993d79..203e83f85 100644 --- a/src/NzbDrone.Core/Notifications/Plex/PlexClientSettings.cs +++ b/src/NzbDrone.Core/Notifications/Plex/PlexClientSettings.cs @@ -1,4 +1,4 @@ -using FluentValidation; +using FluentValidation; using NzbDrone.Core.Annotations; using NzbDrone.Core.ThingiProvider; using NzbDrone.Core.Validation; @@ -32,7 +32,7 @@ namespace NzbDrone.Core.Notifications.Plex [FieldDefinition(2, Label = "Username")] public string Username { get; set; } - [FieldDefinition(3, Label = "Password")] + [FieldDefinition(3, Label = "Password", Type = FieldType.Password)] public string Password { get; set; } public bool IsValid => !string.IsNullOrWhiteSpace(Host);