Merge pull request #22921 from nextcloud/no-root-encryption-wrapper

dont apply encryption wrapper for root mount
This commit is contained in:
Julius Härtl 2020-12-29 14:08:53 +01:00 committed by GitHub
commit d2e67312bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class EncryptionWrapper {
'mount' => $mount
];
if (!$storage->instanceOfStorage(Storage\IDisableEncryptionStorage::class)) {
if (!$storage->instanceOfStorage(Storage\IDisableEncryptionStorage::class) && $mountPoint !== '/') {
$user = \OC::$server->getUserSession()->getUser();
$mountManager = Filesystem::getMountManager();
$uid = $user ? $user->getUID() : null;