mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #36049 from nextcloud/backport/36047/stable25
[stable25] fix cache key used to verify shared mountpoints
This commit is contained in:
commit
a398872711
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