mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +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)
|
public Field(FieldDataModel model)
|
||||||
{
|
{
|
||||||
Type = model.Type;
|
Type = model.Type;
|
||||||
Name = new CipherString(model.Name);
|
Name = model.Name != null ? new CipherString(model.Name) : null;
|
||||||
Value = new CipherString(model.Value);
|
Value = model.Value != null ? new CipherString(model.Value) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public FieldType Type { get; set; }
|
public FieldType Type { get; set; }
|
||||||
|
|
Loading…
Reference in a new issue