Merge pull request #25012 from owncloud/gdrive-fixfilesizewithmimetypemismatch

Fix GDrive file size when mime type doesn't match contents
This commit is contained in:
Vincent Petry 2016-06-08 16:24:14 +02:00
commit 56215513e1
1 changed files with 1 additions and 1 deletions

View File

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