Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
address review by Joas
Signed-off-by: Simon L <[email protected]>
  • Loading branch information
szaimen authored and backportbot-nextcloud[bot] committed Feb 15, 2023
commit b3fb30b8b0ebf42996a3a5e4b2a0e22e85614c38
5 changes: 3 additions & 2 deletions lib/private/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,10 @@ private function writeData() {
'This can usually be fixed by giving the webserver write access to the config directory.');
}

// Never write file back if disk space should be low (less than 100 KiB)
// Never write file back if disk space should be too low
$df = disk_free_space($this->configDir);
if ($df !== false && (int)$df < 102400) {
$size = strlen($content) + 10240;
if ($df !== false && (int)$df < $size) {
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
}

Expand Down