Explorar el Código

Merge pull request #30492 from nextcloud/bugfix/noid/fix-parameter-passing

Fix passing on the parameter
tags/v24.0.0beta1
Joas Schilling hace 2 años
padre
commit
f9b06def78
No account linked to committer's email address
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      apps/files_sharing/lib/External/Scanner.php

+ 1
- 1
apps/files_sharing/lib/External/Scanner.php Ver fichero

@@ -37,7 +37,7 @@ class Scanner extends \OC\Files\Cache\Scanner {
/** {@inheritDoc} */
public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1, $lock = true) {
if (!$this->storage->remoteIsOwnCloud()) {
return parent::scan($path, $recursive, $recursive, $lock);
return parent::scan($path, $recursive, $reuse, $lock);
}

$this->scanAll();

Cargando…
Cancelar
Guardar