Bläddra i källkod

Get `filesize()` if `file_exists()`

Should make sense.
tags/v23.0.0beta1
acsfer 2 år sedan
förälder
incheckning
3a25183b66
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1
    1
      lib/private/Files/Storage/Local.php

+ 1
- 1
lib/private/Files/Storage/Local.php Visa fil

@@ -216,7 +216,7 @@ class Local extends \OC\Files\Storage\Common {
}

public function filesize($path) {
if ($this->is_dir($path)) {
if ($this->is_dir($path) || !$this->file_exists($path)) {
return 0;
}
$fullPath = $this->getSourcePath($path);

Laddar…
Avbryt
Spara