From 39ba68e66ba4079e040bc9839dcd5ec3f223d472 Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Tue, 31 May 2022 12:08:34 -0400 Subject: [PATCH] [fix] Correct a typo in the event name of a stripe webhook (#2023) --- src/Billing/Constants/HandledStripeWebhook.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Billing/Constants/HandledStripeWebhook.cs b/src/Billing/Constants/HandledStripeWebhook.cs index a26bfede0..08d6daafc 100644 --- a/src/Billing/Constants/HandledStripeWebhook.cs +++ b/src/Billing/Constants/HandledStripeWebhook.cs @@ -3,7 +3,7 @@ public static class HandledStripeWebhook { public static string SubscriptionDeleted => "customer.subscription.deleted"; - public static string SubscriptionUpdated => "customer.subscriptions.updated"; + public static string SubscriptionUpdated => "customer.subscription.updated"; public static string UpcomingInvoice => "invoice.upcoming"; public static string ChargeSucceeded => "charge.succeeded"; public static string ChargeRefunded => "charge.refunded";