null check on field ctor

This commit is contained in:
Kyle Spearrin 2017-11-28 13:39:31 -05:00
parent daa2ca876b
commit faaa0b2488
1 changed files with 2 additions and 2 deletions

View File

@ -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; }