Fix SPACE_UNKNOWN constant
This commit is contained in:
parent
756f64d728
commit
c71deea0d5
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue