mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #51594 from nextcloud/fix/occ/config-fileowner-suppress-errors
fix(occ): Suppress errors when checking config.php fileowner
This commit is contained in:
commit
e67eba5e2b
1 changed files with 1 additions and 1 deletions
2
occ
2
occ
|
|
@ -17,7 +17,7 @@ function dropPrivileges(): void {
|
|||
}
|
||||
|
||||
$configPath = __DIR__ . '/config/config.php';
|
||||
$uid = fileowner($configPath);
|
||||
$uid = @fileowner($configPath);
|
||||
if ($uid === false) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue