mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
null check on field ctor
This commit is contained in:
parent
daa2ca876b
commit
faaa0b2488
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ namespace Bit.App.Models
|
|||
public Field(FieldDataModel model)
|
||||
{
|
||||
Type = model.Type;
|
||||
Name = new CipherString(model.Name);
|
||||
Value = new CipherString(model.Value);
|
||||
Name = model.Name != null ? new CipherString(model.Name) : null;
|
||||
Value = model.Value != null ? new CipherString(model.Value) : null;
|
||||
}
|
||||
|
||||
public FieldType Type { get; set; }
|
||||
|
|
Loading…
Reference in a new issue