diff options
author | Joas Schilling <coding@schilljs.com> | 2022-01-05 09:30:20 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-01-05 09:30:20 +0100 |
commit | 66b1963b6e2ce98e19f1cbe30505a313513103fb (patch) | |
tree | a68bf437ee2541008e79449fa01d4f5e858f76df /apps | |
parent | d232dc85ffcbcca2ea203469435b16e5e10126ec (diff) | |
download | nextcloud-server-66b1963b6e2ce98e19f1cbe30505a313513103fb.tar.gz nextcloud-server-66b1963b6e2ce98e19f1cbe30505a313513103fb.zip |
Fix passing on the parameter
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/External/Scanner.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/External/Scanner.php b/apps/files_sharing/lib/External/Scanner.php index 8115159d181..54d5a33d517 100644 --- a/apps/files_sharing/lib/External/Scanner.php +++ b/apps/files_sharing/lib/External/Scanner.php @@ -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(); |