Skip to content

Commit

Permalink
Merge branch 'hotfix/CHECMAG2003-110' into 'master'
Browse files Browse the repository at this point in the history
hotfix/CHECMAG2003-110 into master

See merge request agence-dnd/marketplace/magento-2/external/module-checkout-magento2-plugin!60
  • Loading branch information
Rémi V committed Sep 12, 2022
2 parents b70365e + cdc84e6 commit b5dd339
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Gateway/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ public function getAccountKeys(string $methodId = null): array

// Return the default account keys
return [
'public_key' => $this->getValue('public_key'),
'secret_key' => $this->getValue('secret_key'),
'private_shared_key' => $this->getValue('private_shared_key'),
'public_key' => $this->getValue('public_key') ?? '',
'secret_key' => $this->getValue('secret_key') ?? '',
'private_shared_key' => $this->getValue('private_shared_key') ?? '',
];
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"magento/framework": ">=100.0.1"
},
"type": "magento2-module",
"version": "4.1.0",
"version": "4.1.1",
"autoload": {
"files": [
"registration.php"
Expand Down

0 comments on commit b5dd339

Please sign in to comment.