diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-09-16 11:39:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 11:39:58 +0200 |
commit | ff0cab5956c289bad60db54716b148c8879566a4 (patch) | |
tree | 380f48666b1400f90beab4a6394eda4b287d7dca /lib/private/Files/Cache | |
parent | 52f4b88f8d0581e3ec8e59854b78bd006ab0f80f (diff) | |
parent | da59fd4389bedd6b643f277b5e411872137569b3 (diff) | |
download | nextcloud-server-ff0cab5956c289bad60db54716b148c8879566a4.tar.gz nextcloud-server-ff0cab5956c289bad60db54716b148c8879566a4.zip |
Merge pull request #47852 from nextcloud/sharding-code-fixes
Diffstat (limited to 'lib/private/Files/Cache')
-rw-r--r-- | lib/private/Files/Cache/Cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index 0b0ff8ee4fa..e1547fefe1c 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -1207,7 +1207,7 @@ class Cache implements ICache { } } - private function moveFromStorageSharded(ShardDefinition $shardDefinition, ICache $sourceCache, ICacheEntry $sourceEntry, $targetPath) { + private function moveFromStorageSharded(ShardDefinition $shardDefinition, ICache $sourceCache, ICacheEntry $sourceEntry, $targetPath): void { if ($sourceEntry->getMimeType() === ICacheEntry::DIRECTORY_MIMETYPE) { $fileIds = $this->getChildIds($sourceCache->getNumericStorageId(), $sourceEntry->getPath()); } else { |