diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-10-15 15:46:26 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-16 21:41:51 +0200 |
commit | 2e8232e80393cb88ba96dd4f3027fcfd4c4f64e3 (patch) | |
tree | e506eca53afdcd0da4ea7be439869d10bdf084ea /apps | |
parent | d749b9a5ac434418a081149ab056a2db4caf9a55 (diff) | |
download | nextcloud-server-2e8232e80393cb88ba96dd4f3027fcfd4c4f64e3.tar.gz nextcloud-server-2e8232e80393cb88ba96dd4f3027fcfd4c4f64e3.zip |
Fix trashbin handling of unknown/unlimited free space
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_trashbin/lib/trashbin.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index ef015c3566a..839a47a7bf2 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -581,8 +581,9 @@ class Trashbin { if ($quota === null || $quota === 'none') { $quota = \OC\Files\Filesystem::free_space('/'); $softQuota = false; - if ($quota === \OCP\Files\FileInfo::SPACE_UNKNOWN) { - $quota = 0; + // inf or unknown free space + if ($quota < 0) { + $quota = PHP_INT_MAX; } } else { $quota = \OCP\Util::computerFileSize($quota); |