mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Only need to setup root for groupfolders
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
9a76f06eca
commit
b36dfd8f11
1 changed files with 3 additions and 1 deletions
|
|
@ -335,7 +335,9 @@ class SetupManager {
|
|||
* @return IUser|null
|
||||
*/
|
||||
private function getUserForPath(string $path) {
|
||||
if (substr_count($path, '/') < 2) {
|
||||
if (strpos($path, '/__groupfolders') === 0) {
|
||||
return null;
|
||||
} elseif (substr_count($path, '/') < 2) {
|
||||
if ($user = $this->userSession->getUser()) {
|
||||
return $user;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue