From 61fffb258177c06e5a7eaa4121aa01efa88cf91a Mon Sep 17 00:00:00 2001 From: Hinton Date: Fri, 12 Jun 2020 13:20:12 +0200 Subject: [PATCH] Resolve all passwords being hidden after upgrade --- src/Core/Models/Data/CipherData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Models/Data/CipherData.cs b/src/Core/Models/Data/CipherData.cs index c034833b223..db11ecf7773 100644 --- a/src/Core/Models/Data/CipherData.cs +++ b/src/Core/Models/Data/CipherData.cs @@ -54,7 +54,7 @@ public CipherData(CipherResponse response, string userId = null, HashSet public string FolderId { get; set; } public string UserId { get; set; } public bool Edit { get; set; } - public bool ViewPassword { get; set; } + public bool ViewPassword { get; set; } = true; // Fallback for old server versions public bool OrganizationUseTotp { get; set; } public bool Favorite { get; set; } public DateTime RevisionDate { get; set; }