From ebec8db0e44a70ee0404455a1bc373ba89679d87 Mon Sep 17 00:00:00 2001 From: kGablo Date: Thu, 20 Jun 2024 14:30:27 +0200 Subject: [PATCH] cache key fix --- Model/ApiFacade/Transaction/TransactionApiFacade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/ApiFacade/Transaction/TransactionApiFacade.php b/Model/ApiFacade/Transaction/TransactionApiFacade.php index 9fbd0da..1c7759e 100755 --- a/Model/ApiFacade/Transaction/TransactionApiFacade.php +++ b/Model/ApiFacade/Transaction/TransactionApiFacade.php @@ -74,7 +74,7 @@ public function channels(): array return []; } - $cacheKey = 'tpay_channels'.md5(join('|', [$this->tpay->getOpenApiClientId(), $this->tpay->getOpenApiPassword(), !$this->tpay->useSandboxMode()])); + $cacheKey = 'tpay_channels_'.md5(join('|', [$this->tpay->getOpenApiClientId(), $this->tpay->getOpenApiPassword(), !$this->tpay->useSandboxMode()])); $channels = $this->cache->load($cacheKey);