Skip to content

Commit

Permalink
Changed api url
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Onufriichuk committed Feb 27, 2024
1 parent f9c494a commit 18e03d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugin/Order/Create/PaymentLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(
public function afterImportPostData(Create $subject, $result, array $data)
{
if ($result->getQuote() && $result->getQuote()->getPayment()->getMethod() == RvvupConfigProvider::CODE
&& $data['send_confirmation']) {
&& isset($data['send_confirmation']) && $data['send_confirmation']) {
$this->createRvvupPayByLink($result->getQuote(), $subject);
}

Expand Down

0 comments on commit 18e03d7

Please sign in to comment.