mirror of
https://github.com/bitwarden/server
synced 2025-12-17 16:53:23 +00:00
Prevent NRE for missing upcoming invoice when sub is pending cancelation (#3920)
This commit is contained in:
@@ -126,8 +126,14 @@ public class OrganizationSubscriptionResponseModel : OrganizationResponseModel
|
||||
if (hideSensitiveData)
|
||||
{
|
||||
BillingEmail = null;
|
||||
Subscription.Items = null;
|
||||
UpcomingInvoice.Amount = null;
|
||||
if (Subscription != null)
|
||||
{
|
||||
Subscription.Items = null;
|
||||
}
|
||||
if (UpcomingInvoice != null)
|
||||
{
|
||||
UpcomingInvoice.Amount = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user