From 3b63fbb61b47df3c42f5535f025561de01a51c6a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 19 Apr 2019 15:18:43 -0400 Subject: [PATCH] no userid on cipher domain --- src/Core/Models/Domain/Cipher.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Core/Models/Domain/Cipher.cs b/src/Core/Models/Domain/Cipher.cs index 4471789e8..aea0c5529 100644 --- a/src/Core/Models/Domain/Cipher.cs +++ b/src/Core/Models/Domain/Cipher.cs @@ -16,12 +16,11 @@ namespace Bit.Core.Models.Domain BuildDomainModel(this, obj, new HashSet { "Id", - "UserId", "OrganizationId", "FolderId", "Name", "Notes" - }, alreadyEncrypted, new HashSet { "Id", "UserId", "OrganizationId", "FolderId" }); + }, alreadyEncrypted, new HashSet { "Id", "OrganizationId", "FolderId" }); Type = obj.Type; Favorite = obj.Favorite;