From c2582fe0556d38494eadd1a999b58cb16385b0fc Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Mon, 15 Jun 2020 18:33:36 +0200 Subject: [PATCH] Resolve new ciphers defaulting to ViewPassword = false, causing passwords to be non editable. (#982) --- src/Core/Models/View/CipherView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Models/View/CipherView.cs b/src/Core/Models/View/CipherView.cs index da0f4a829..8fec06a25 100644 --- a/src/Core/Models/View/CipherView.cs +++ b/src/Core/Models/View/CipherView.cs @@ -35,7 +35,7 @@ namespace Bit.Core.Models.View public bool Favorite { get; set; } public bool OrganizationUseTotp { get; set; } public bool Edit { get; set; } - public bool ViewPassword { get; set; } + public bool ViewPassword { get; set; } = true; public Dictionary LocalData { get; set; } public LoginView Login { get; set; } public IdentityView Identity { get; set; }