Skip to content

Commit

Permalink
NTR: prepare hotfix 4.4.1 (#694)
Browse files Browse the repository at this point in the history
Co-authored-by: Vitalij Mik <vitalij.mik@dasistweb.de>
  • Loading branch information
BlackScorp and Vitalij Mik authored Jan 19, 2024
1 parent 549addb commit 2cee88b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kiener/mollie-payments-plugin",
"description": "Mollie Payments",
"version": "v4.4.0",
"version": "v4.4.1",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
Expand Down
26 changes: 13 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/MolliePayments.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class MolliePayments extends Plugin
{
const PLUGIN_VERSION = '4.4.0';
const PLUGIN_VERSION = '4.4.1';


/**
Expand Down
2 changes: 1 addition & 1 deletion src/Service/PaymentMethodService.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function addPaymentMethods(array $paymentMethods, Context $context): void
];
}

if (mb_strlen($technicalName) > 0) {
if (mb_strlen($technicalName) === 0) {
$technicalName = self::TECHNICAL_NAME_PREFIX . $paymentMethod['name'];
}

Expand Down

0 comments on commit 2cee88b

Please sign in to comment.