null checks
This commit is contained in:
parent
db1a632c65
commit
5d95fc733c
|
@ -178,7 +178,7 @@ export class Cipher extends Domain {
|
||||||
c.edit = this.edit;
|
c.edit = this.edit;
|
||||||
c.organizationUseTotp = this.organizationUseTotp;
|
c.organizationUseTotp = this.organizationUseTotp;
|
||||||
c.favorite = this.favorite;
|
c.favorite = this.favorite;
|
||||||
c.revisionDate = this.revisionDate.toISOString();
|
c.revisionDate = this.revisionDate != null ? this.revisionDate.toISOString() : null;
|
||||||
c.type = this.type;
|
c.type = this.type;
|
||||||
c.collectionIds = this.collectionIds;
|
c.collectionIds = this.collectionIds;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue