We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7449e commit 88f4e97Copy full SHA for 88f4e97
lib/private/Files/Mount/Manager.php
@@ -85,6 +85,9 @@ private function setupForFind(string $path) {
85
if (strpos($path, '/appdata_' . \OC_Util::getInstanceId()) === 0) {
86
// for appdata, we only setup the root bits, not the user bits
87
\OC_Util::setupRootFS();
88
+ } elseif (strpos($path, '/files_external/uploads/') === 0) {
89
+ // for OC\Security\CertificateManager, we only setup the root bits, not the user bits
90
+ \OC_Util::setupRootFS();
91
} else {
92
\OC_Util::setupFS();
93
}
0 commit comments