mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix cache key used to verify shared mountpoints
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
adef2b85c8
commit
927174e325
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ class SharedMount extends MountPoint implements MoveableMount {
|
|||
array $mountpoints,
|
||||
CappedMemoryCache $folderExistCache
|
||||
) {
|
||||
$cacheKey = $this->user->getUID() . '/' . $share->getTarget();
|
||||
$cacheKey = $this->user->getUID() . '/' . $share->getId();
|
||||
$cached = $this->cache->get($cacheKey);
|
||||
if ($cached !== null) {
|
||||
return $cached;
|
||||
|
|
|
|||
Loading…
Reference in a new issue