From c752a99ac450aeb56387291c21dfae5742c9aadf Mon Sep 17 00:00:00 2001 From: Piotr PG Gajek Date: Tue, 12 May 2026 21:08:49 +0200 Subject: [PATCH] Fix --- force-app/main/default/classes/CacheManager.cls | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/force-app/main/default/classes/CacheManager.cls b/force-app/main/default/classes/CacheManager.cls index fbae51b..a320660 100644 --- a/force-app/main/default/classes/CacheManager.cls +++ b/force-app/main/default/classes/CacheManager.cls @@ -151,10 +151,10 @@ public with sharing class CacheManager { } public override Cache.Partition getPartition(String partitionName) { - if (!Cache.Session.isAvailable()) { - return null; - } try { + if (!Cache.Session.isAvailable()) { + return null; + } return Cache.Session.getPartition(partitionName); } catch (Cache.Session.SessionCacheException e) { return null;