mirror of
https://github.com/bitwarden/mobile
synced 2025-02-07 23:48:48 +01:00
fix null ref when no uri
This commit is contained in:
parent
262c19b194
commit
fcb072c37d
@ -10,7 +10,7 @@ namespace Bit.App.Models.Api
|
||||
|
||||
public LoginType(Cipher cipher)
|
||||
{
|
||||
Uris = cipher.Login.Uris.Select(u => new LoginUriType(u));
|
||||
Uris = cipher.Login.Uris?.Select(u => new LoginUriType(u));
|
||||
Username = cipher.Login.Username?.EncryptedString;
|
||||
Password = cipher.Login.Password?.EncryptedString;
|
||||
Totp = cipher.Login.Totp?.EncryptedString;
|
||||
|
Loading…
x
Reference in New Issue
Block a user