diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-08-12 15:37:39 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-08-12 17:30:23 +0200 |
commit | 6325cf6ecb70f46099fd692c45672fb2afdbb692 (patch) | |
tree | f32c4e20baf8b4b913b710c19bf75ac4a1db1725 | |
parent | 20f9f43de7dbb8d9e2f158919952afab3e7552cb (diff) | |
download | nextcloud-server-6325cf6ecb70f46099fd692c45672fb2afdbb692.tar.gz nextcloud-server-6325cf6ecb70f46099fd692c45672fb2afdbb692.zip |
Scanner: correctly pass trough reuse options when doing a recursive scan
-rw-r--r-- | lib/files/cache/scanner.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 65759a34fd2..0c510eee96f 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -182,7 +182,7 @@ class Scanner extends BasicEmitter { } \OC_DB::commit(); foreach ($childQueue as $child) { - $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE); + $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE, $reuse); if ($childSize === -1) { $size = -1; } else { |