1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

null check on field ctor

This commit is contained in:
Kyle Spearrin 2017-11-28 13:39:31 -05:00
parent daa2ca876b
commit faaa0b2488

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