From 83c36563f45495c2d32c3db58e365d29b41610fa Mon Sep 17 00:00:00 2001 From: Mahdi Date: Tue, 19 Nov 2024 14:12:29 +0330 Subject: [PATCH] fix little bug --- src/EventHandler/Payments/Payment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventHandler/Payments/Payment.php b/src/EventHandler/Payments/Payment.php index eae28ee10..fa06be852 100644 --- a/src/EventHandler/Payments/Payment.php +++ b/src/EventHandler/Payments/Payment.php @@ -51,7 +51,7 @@ class Payment extends Update $rawRequestedPayment['email'], ) : null; $this->shippingOptionId = $rawRequestedPayment['shipping_option_id'] ?? null; - $this->currency = $rawRequestedPayment['$currency']; + $this->currency = $rawRequestedPayment['currency']; $this->totalAmount = $rawRequestedPayment['total_amount']; }