1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-16 13:55:52 +02:00

null check

This commit is contained in:
Kyle Spearrin 2018-08-01 16:53:48 -04:00
parent 370952971a
commit 6f64c5cb5a

View File

@ -27,6 +27,6 @@ export class OrganizationBillingResponse extends OrganizationResponse {
if (response.Charges != null) {
this.charges = response.Charges.map((c: any) => new BillingChargeResponse(c));
}
this.expiration = new Date(response.Expiration);
this.expiration = response.Expiration != null ? new Date(response.Expiration) : null;
}
}