mirror of
https://github.com/bitwarden/mobile
synced 2026-01-01 16:13:15 +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