1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-30 04:17:55 +02:00

Cipher.Login null check

This commit is contained in:
Kyle Spearrin 2019-06-04 12:37:57 -04:00
parent f0893ca214
commit f8fa867154

View File

@ -382,11 +382,14 @@ namespace Bit.App.Pages
}
Cipher.Fields = Fields.Any() ? Fields.Select(f => f.Field).ToList() : null;
Cipher.Login.Uris = Uris.ToList();
if(!EditMode && Cipher.Type == CipherType.Login && (Cipher.Login.Uris?.Count ?? 0) == 1 &&
string.IsNullOrWhiteSpace(Cipher.Login.Uris.First().Uri))
if(Cipher.Login != null)
{
Cipher.Login.Uris = null;
Cipher.Login.Uris = Uris.ToList();
if(!EditMode && Cipher.Type == CipherType.Login && (Cipher.Login.Uris?.Count ?? 0) == 1 &&
string.IsNullOrWhiteSpace(Cipher.Login.Uris.First().Uri))
{
Cipher.Login.Uris = null;
}
}
if(!EditMode && Cipher.OrganizationId != null)