Fix SPACE_UNKNOWN constant

This commit is contained in:
Robin Appelman 2014-10-16 12:26:26 +02:00
parent 756f64d728
commit c71deea0d5
1 changed files with 1 additions and 1 deletions

View File

@ -745,7 +745,7 @@ class Trashbin {
if ($quota === null || $quota === 'none') {
$quota = \OC\Files\Filesystem::free_space('/');
$softQuota = false;
if ($quota === \OC\Files\SPACE_UNKNOWN) {
if ($quota === \OCP\Files\FileInfo::SPACE_UNKNOWN) {
$quota = 0;
}
} else {