diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-17 14:03:25 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-17 14:03:25 -0400 |
commit | 4bb9c4a42ea281af09908649e0e9b9cc5f64b012 (patch) | |
tree | a04db4a90519cb032caa22988f0315432ff2aa51 /apps/files_external | |
parent | 5368c8dafa0ab10f8ee47940f4ad1a4585023e45 (diff) | |
download | nextcloud-server-4bb9c4a42ea281af09908649e0e9b9cc5f64b012.tar.gz nextcloud-server-4bb9c4a42ea281af09908649e0e9b9cc5f64b012.zip |
Fix constant in last commit
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/google.php | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } |