Skip to content

Commit

Permalink
Merge pull request #64 from paynl/feature/PLUG-989
Browse files Browse the repository at this point in the history
PLUG-989 - Shipping Description Fix
  • Loading branch information
woutse authored Oct 4, 2022
2 parents f47796d + 0bae5c4 commit 1cb3b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Paymentmethod/PaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ protected function doStartTransaction(Order $order)
if ($shippingCost != 0) {
$arrProducts[] = [
'id' => 'shipping',
'name' => $shippingDescription,
'name' => empty($shippingDescription) ? 'Shipping' : $shippingDescription,
'price' => $shippingCost,
'qty' => 1,
'tax' => $shippingTax,
Expand Down

0 comments on commit 1cb3b1b

Please sign in to comment.