Skip to content

Commit e9ef5c2

Browse files
committedMar 25, 2025
Merge #278 [Fix30] avoid clear cache with prefix
2 parents 94a6922 + 3d899f5 commit e9ef5c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/private/Collaboration/Reference/ReferenceManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public function invalidateCache(string $cachePrefix, ?string $cacheKey = null):
172172
return;
173173
}
174174

175-
$this->cache->remove(md5($cachePrefix) . '-' . md5($cacheKey));
175+
$this->cache->remove(md5($cachePrefix) . '-' . md5($cacheKey ?? ''));
176176
}
177177

178178
/**

0 commit comments

Comments
 (0)