Skip to content

Commit 8eec26a

Browse files
committed
Merge #269 [fix 29]fix: Avoid clear cache with prefix [maybe nee…
2 parents e580f2d + 11b2787 commit 8eec26a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Collaboration/Reference/ReferenceManager.php

Lines changed: 1 addition & 1 deletion
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)