Skip to content

Commit 9b616c3

Browse files
committed
Merge #269 [fix 29]fix: Avoid clear cache with prefix [maybe nee…
2 parents 724d68d + 11b2787 commit 9b616c3

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
@@ -174,7 +174,7 @@ public function invalidateCache(string $cachePrefix, ?string $cacheKey = null):
174174
return;
175175
}
176176

177-
$this->cache->remove(md5($cachePrefix) . '-' . md5($cacheKey));
177+
$this->cache->remove(md5($cachePrefix) . '-' . md5($cacheKey ?? ''));
178178
}
179179

180180
/**

0 commit comments

Comments
 (0)