From 4bb9c4a42ea281af09908649e0e9b9cc5f64b012 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 36b890e82e..f8675cbe22 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(); }