mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 01:00:50 -04:00
fix it for 32-bit
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
b3fb30b8b0
commit
b3a64a9121
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ class Config {
|
|||
// Never write file back if disk space should be too low
|
||||
$df = disk_free_space($this->configDir);
|
||||
$size = strlen($content) + 10240;
|
||||
if ($df !== false && (int)$df < $size) {
|
||||
if ($df !== false && $df < (float)$size) {
|
||||
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue