diff --git a/src/PaymentGateways/Gateways/Stripe/LegacyStripeAdapter.php b/src/PaymentGateways/Gateways/Stripe/LegacyStripeAdapter.php index 62b446901a..81c751c833 100644 --- a/src/PaymentGateways/Gateways/Stripe/LegacyStripeAdapter.php +++ b/src/PaymentGateways/Gateways/Stripe/LegacyStripeAdapter.php @@ -20,7 +20,7 @@ public function loadLegacyStripeWebhooksAndFilters() { $settings = give_get_settings(); $gatewaysFromSettings = $settings['gateways'] ?? []; - $gatewaysFromOption = give_get_option('gateways'); + $gatewaysFromOption = give_get_option('gateways_v3', []); // for some reason, the gateways from the settings are not always in the gateways from the option. // this might be a service provider race conditions.