mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
null checks
This commit is contained in:
@@ -178,7 +178,7 @@ export class Cipher extends Domain {
|
||||
c.edit = this.edit;
|
||||
c.organizationUseTotp = this.organizationUseTotp;
|
||||
c.favorite = this.favorite;
|
||||
c.revisionDate = this.revisionDate.toISOString();
|
||||
c.revisionDate = this.revisionDate != null ? this.revisionDate.toISOString() : null;
|
||||
c.type = this.type;
|
||||
c.collectionIds = this.collectionIds;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user