1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-13 01:38:51 +02:00

PM-3349 PM-3350 Add null checks on CipherDetailsPageVM to avoid crash opening Secure Notes.

This commit is contained in:
Dinis Vieira 2023-10-01 23:15:55 +01:00
parent 9f6c8601d3
commit 0dbc23f734
No known key found for this signature in database
GPG Key ID: 9389160FF6C295F3

View File

@ -149,7 +149,7 @@ namespace Bit.App.Pages
public bool IsIdentity => Cipher?.Type == Core.Enums.CipherType.Identity;
public bool IsCard => Cipher?.Type == Core.Enums.CipherType.Card;
public bool IsSecureNote => Cipher?.Type == Core.Enums.CipherType.SecureNote;
public FormattedString ColoredPassword => GeneratedValueFormatter.Format(Cipher.Login.Password);
public FormattedString ColoredPassword => Cipher?.Login != null ? GeneratedValueFormatter.Format(Cipher.Login.Password) : string.Empty;
public FormattedString UpdatedText
{
get
@ -251,8 +251,8 @@ namespace Bit.App.Pages
}
public double TotpProgress => string.IsNullOrEmpty(TotpSec) ? 0 : double.Parse(TotpSec) * 100 / _totpInterval;
public bool IsDeleted => Cipher.IsDeleted;
public bool CanEdit => !Cipher.IsDeleted;
public bool CanClone => Cipher.IsClonable;
public bool CanEdit => Cipher != null && !Cipher.IsDeleted;
public bool CanClone => Cipher != null && Cipher.IsClonable;
public async Task<bool> LoadAsync(Action finishedLoadingAction = null)
{