mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
still include the share target in the cache key for validating share mount
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
6c1cbda9f0
commit
edaf318b6f
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ class SharedMount extends MountPoint implements MoveableMount {
|
|||
array $mountpoints,
|
||||
CappedMemoryCache $folderExistCache
|
||||
) {
|
||||
$cacheKey = $this->user->getUID() . '/' . $share->getId();
|
||||
$cacheKey = $this->user->getUID() . '/' . $share->getId() . '/' . $share->getTarget();
|
||||
$cached = $this->cache->get($cacheKey);
|
||||
if ($cached !== null) {
|
||||
return $cached;
|
||||
|
|
|
|||
Loading…
Reference in a new issue