mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 15:23:35 +00:00
null checks
This commit is contained in:
@@ -27,7 +27,7 @@ namespace Bit.Core.Models.Domain
|
||||
OrganizationUseTotp = obj.OrganizationUseTotp;
|
||||
Edit = obj.Edit;
|
||||
RevisionDate = obj.RevisionDate;
|
||||
CollectionIds = new HashSet<string>(obj.CollectionIds);
|
||||
CollectionIds = obj.CollectionIds != null ? new HashSet<string>(obj.CollectionIds) : null;
|
||||
LocalData = localData;
|
||||
|
||||
switch(Type)
|
||||
|
||||
Reference in New Issue
Block a user