We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, we found this error when we doing the refund in magento 2.4.5p4 The function is on null.
After that, we was looking into the function at vendor/riskified/magento2new/Model/Observer/ProcessSuccessfulPost.php
Please check the code in 1.12.17
We made the modify as below code snippet. And then, it worked
/** * ProcessSuccessfulPost constructor. * @param OrderLogger $logger * @param OrderApi $orderApi */ public function __construct( OrderLogger $logger, OrderApi $orderApi, Registry $registry ) { $this->logger = $logger; $this->orderApi = $orderApi; $this->registry = $registry; }
The $this->registry should added after $this->orderApi = $orderApi;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, we found this error when we doing the refund in magento 2.4.5p4
The function is on null.
After that, we was looking into the function at vendor/riskified/magento2new/Model/Observer/ProcessSuccessfulPost.php
Please check the code in 1.12.17
We made the modify as below code snippet.
And then, it worked
The $this->registry should added after $this->orderApi = $orderApi;
The text was updated successfully, but these errors were encountered: