From 3201ed4e8be8b65d7add70500135f81121b726f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=CC=88hringer?= Date: Tue, 6 Dec 2022 12:34:21 +0100 Subject: [PATCH] [BUGFIX] Purge only related urls and not all urls from cache --- Classes/ResourceStorageOperations/CacheService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/ResourceStorageOperations/CacheService.php b/Classes/ResourceStorageOperations/CacheService.php index d297a96..74597b5 100644 --- a/Classes/ResourceStorageOperations/CacheService.php +++ b/Classes/ResourceStorageOperations/CacheService.php @@ -82,7 +82,7 @@ protected function flushCaches(array $publicUrls): void } } if (!empty($urls)) { - $proxyProvider->flushAllUrls($urls); + $proxyProvider->flushCacheForUrls($urls); } } }