diff options
author | Robin Appelman <robin@icewind.nl> | 2023-11-22 16:27:29 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-01-31 18:06:18 +0100 |
commit | b777304a77dfcc2bf7576dfae3589ebff0a5da11 (patch) | |
tree | 71a26778baba973e2863030e29155090e9c57b5a /lib/private/Files/ObjectStore | |
parent | 7aed19ac982037b8bacd06bb3081842fe196d386 (diff) | |
download | nextcloud-server-b777304a77dfcc2bf7576dfae3589ebff0a5da11.tar.gz nextcloud-server-b777304a77dfcc2bf7576dfae3589ebff0a5da11.zip |
also updated parent etags when a changed etag is detected during scanning
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/ObjectStore')
-rw-r--r-- | lib/private/Files/ObjectStore/ObjectStoreScanner.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/ObjectStore/ObjectStoreScanner.php b/lib/private/Files/ObjectStore/ObjectStoreScanner.php index d827662ae0b..8a9b844c47f 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreScanner.php +++ b/lib/private/Files/ObjectStore/ObjectStoreScanner.php @@ -39,7 +39,7 @@ class ObjectStoreScanner extends Scanner { return []; } - protected function scanChildren(string $path, $recursive, int $reuse, int $folderId, bool $lock, int|float $oldSize) { + protected function scanChildren(string $path, $recursive, int $reuse, int $folderId, bool $lock, int|float $oldSize, &$etagChanged = false) { return 0; } |