diff --git a/lib/private/Files/Mount/Manager.php b/lib/private/Files/Mount/Manager.php index 8c6f1acceec57..22b05b1f3844c 100644 --- a/lib/private/Files/Mount/Manager.php +++ b/lib/private/Files/Mount/Manager.php @@ -85,6 +85,9 @@ private function setupForFind(string $path) { if (strpos($path, '/appdata_' . \OC_Util::getInstanceId()) === 0) { // for appdata, we only setup the root bits, not the user bits \OC_Util::setupRootFS(); + } elseif (strpos($path, '/files_external/uploads/') === 0) { + // for OC\Security\CertificateManager, we only setup the root bits, not the user bits + \OC_Util::setupRootFS(); } else { \OC_Util::setupFS(); }