Explorar el Código

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

Should make sense.
tags/v23.0.0beta1
acsfer hace 2 años
padre
commit
3a25183b66
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lib/private/Files/Storage/Local.php

+ 1
- 1
lib/private/Files/Storage/Local.php Ver fichero

@@ -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);

Cargando…
Cancelar
Guardar