1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 09:13:15 +00:00

trim Uri proper from stored json on save

This commit is contained in:
Kyle Spearrin
2018-03-05 23:49:48 -05:00
parent 005b2a4fb6
commit deb1ead4ea
3 changed files with 8 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ namespace Bit.App.Models.Data
{
Name = cipher.Name;
Notes = cipher.Notes;
Fields = cipher.Fields.Select(f => new FieldDataModel(f));
Fields = cipher.Fields?.Select(f => new FieldDataModel(f));
}
public string Name { get; set; }