mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 12:00:39 -05: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
f74ba9cb5d
commit
953f9ea2b2
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->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