Skip to content

Commit

Permalink
Add after no payment action hook.
Browse files Browse the repository at this point in the history
  • Loading branch information
inpsyde-maticluznar committed Nov 16, 2023
1 parent 17d1ece commit c27045f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Payment/MollieOrderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ public function onWebhookAction()
if ($order->get_status() === 'processing' && $payment->isCompleted() && method_exists($payment_object, 'onWebhookCompleted')) {
$payment_object->onWebhookCompleted($order, $payment, $payment_method_title);
}
do_action($this->pluginId . '_after_webhook_no_payment_action', $payment, $order);
return;
}

Expand Down

0 comments on commit c27045f

Please sign in to comment.