From bbf440d969bec7f9ca9f2937bb3f438af4e07f72 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 17 May 2013 14:03:25 -0400 Subject: [PATCH] Fix constant in last commit --- apps/files_external/lib/google.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index 36b890e82e8..f8675cbe225 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -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(); } -- 2.39.5