From b1566bbeaccc2bea025d8d4e2f5ff869c4ee419b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Sun, 14 Sep 2025 19:58:10 +0200 Subject: [PATCH] fix: typo in cache key --- src/Service/Connector/GandiProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/Connector/GandiProvider.php b/src/Service/Connector/GandiProvider.php index 9e2fcc1..5f34bf9 100644 --- a/src/Service/Connector/GandiProvider.php +++ b/src/Service/Connector/GandiProvider.php @@ -138,6 +138,6 @@ class GandiProvider extends AbstractProvider */ protected function getCachedTldList(): CacheItemInterface { - return $this->cacheItemPool->getItem('app.provider.ovh.supported-tld'); + return $this->cacheItemPool->getItem('app.provider.gandi.supported-tld'); } }