1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 00:22:50 -05:00

backwards compat apis on Uri

This commit is contained in:
Kyle Spearrin
2018-03-01 09:29:49 -05:00
parent c8aabf0b40
commit 2b276e9986
6 changed files with 45 additions and 21 deletions

View File

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