Skip to content

Commit

Permalink
fix: ignore error when removing "is writable" test file
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Dec 13, 2024
1 parent 10852d3 commit 355dde8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/legacy/OC_Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ public static function checkServer(\OC\SystemConfig $config) {
];
} else {
fclose($handle);
unlink($testFile);
@unlink($testFile);
}
} else {
$errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY));
Expand Down

0 comments on commit 355dde8

Please sign in to comment.