Merge pull request #2320 from nextcloud/fix-getFileSizeViaCOM-regression

[stable10] Fix get file size via com regression
This commit is contained in:
Lukas Reschke 2016-11-24 22:21:42 +01:00 committed by GitHub
commit eefc8ce961
1 changed files with 0 additions and 4 deletions

View File

@ -98,10 +98,6 @@ class LargeFileHelper {
if (!is_null($fileSize)) {
return $fileSize;
}
$fileSize = $this->getFileSizeViaCOM($filename);
if (!is_null($fileSize)) {
return $fileSize;
}
$fileSize = $this->getFileSizeViaExec($filename);
if (!is_null($fileSize)) {
return $fileSize;