Fix constant in last commit

This commit is contained in:
Michael Gapczynski 2013-05-17 14:03:25 -04:00
parent 5368c8dafa
commit 4bb9c4a42e
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ class Google extends \OC\Files\Storage\Common {
// Check if this is a Google Doc
if ($this->getMimeType($path) !== $file->getMimeType()) {
// Return unknown file size
$stat['size'] = \OC\Files\Filesystem::FREE_SPACE_UNKNOWN;
$stat['size'] = \OC\Files\FREE_SPACE_UNKNOWN;
} else {
$stat['size'] = $file->getFileSize();
}