Skip to content

Commit c6c8e21

Browse files
committed
fix: update MONEI webhook signature verification method
1 parent 172c750 commit c6c8e21

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,7 @@ $signature = $_SERVER['HTTP_MONEI_SIGNATURE'] ?? '';
395395

396396
try {
397397
// Verify the signature
398-
$payload = $monei->verifySignature($rawBody, $signature);
399-
$payment = $payload->data;
398+
$payment = $monei->verifySignature($rawBody, $signature);
400399

401400
// Update your order status based on the payment status
402401
if ($payment->status === PaymentStatus::SUCCEEDED) {

0 commit comments

Comments
 (0)