Skip to content

Commit ed636cc

Browse files
authored
Merge pull request #3 from vaimo/KUSTOM-20-fix-broken-merchant-portal-link
KUSTOM-20 Broken portal link fixed
2 parents 58a11c4 + 876e116 commit ed636cc

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
* KUSTOM-55 Fix missing error message when Klarna API exception is thrown
55
* KUSTOM-68 Fix guzzlehttp/guzzle compatibility issue for magento <2.4.5
6+
* KUSTOM-20 Fix broken merchant portal link in order detail page
67

78
11.0.15 / 2026-02-18
89
==================

Model/System/MerchantPortal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function getOrderMerchantPortalLink(MageOrder $mageOrder, KlarnaOrder $kl
5050

5151
$isTest = $this->apiConfiguration->isTestMode($store, $currency);
5252
$portalBaseUrl = $isTest ? self::MERCHANT_TEST_PORTAL : self::MERCHANT_PORTAL;
53-
$merchantId = $this->apiConfiguration->getUserName($store, $currency);
53+
$merchantId = $this->apiConfiguration->getClientIdentifier($store, $currency);
5454

5555
return $portalBaseUrl .
5656
"orders/list/" .

0 commit comments

Comments
 (0)