diff options
author | Robin Appelman <robin@icewind.nl> | 2022-06-14 15:57:59 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2023-04-28 15:08:08 +0200 |
commit | f5e2b0b22f51cdb67c06c368e921052d25aacc2e (patch) | |
tree | 8d505989d05d5c56bd32a647d6830f9fc3905790 /version.php | |
parent | 74f31bac8c0473f3dc92fcb54967f4cf977c413f (diff) | |
download | nextcloud-server-f5e2b0b22f51cdb67c06c368e921052d25aacc2e.tar.gz nextcloud-server-f5e2b0b22f51cdb67c06c368e921052d25aacc2e.zip |
allow storing multiple mounts for the same rootid in the mount cache
currently `[$userId, $rootId]` is used as the unique key for storing mounts in the mount cache,
however there are cases where the same rootid is mounted in multiple places for a user which currently leads to not all of those mounts being added to the cache.
Previously this didn't matter as the mount cache was only used to list users with access to a specific file, so a user having access to the file multiple times didn' change anything.
With 24 the mount cache is used for more cases and multiple mounts for the same id becomes relevant.
While I think there isn't a real negative effect atm besides missing the optimized path we should ensure that the mounts are properly listed
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php index d20714276b1..44889f77860 100644 --- a/version.php +++ b/version.php @@ -30,7 +30,7 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level // when updating major/minor version number. -$OC_Version = [27, 0, 0, 0]; +$OC_Version = [27, 0, 0, 1]; // The human-readable string $OC_VersionString = '27.0.0 dev'; |