1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Resolve new ciphers defaulting to ViewPassword = false, causing passwords to be non editable. (#982)

This commit is contained in:
Oscar Hinton
2020-06-15 18:33:36 +02:00
committed by GitHub
parent 0980219c8d
commit c2582fe055

View File

@@ -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<string, object> LocalData { get; set; }
public LoginView Login { get; set; }
public IdentityView Identity { get; set; }