Skip to content

Commit

Permalink
cache key fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krzGablo committed Jun 20, 2024
1 parent 2417203 commit ebec8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/ApiFacade/Transaction/TransactionApiFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit ebec8db

Please sign in to comment.