mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 00:02:54 -04:00
Merge pull request #45105 from nextcloud/backport/fix-ownership-transfer-encryption
[stable29] fix(files): Fix ownership transfer encrypted files detection
This commit is contained in:
commit
d8c0da5636
1 changed files with 1 additions and 1 deletions
|
|
@ -244,7 +244,7 @@ class OwnershipTransferService {
|
|||
|
||||
$encryptedFiles = [];
|
||||
$this->walkFiles($view, $sourcePath,
|
||||
function (FileInfo $fileInfo) use ($progress) {
|
||||
function (FileInfo $fileInfo) use ($progress, &$encryptedFiles) {
|
||||
if ($fileInfo->getType() === FileInfo::TYPE_FOLDER) {
|
||||
// only analyze into folders from main storage,
|
||||
if (!$fileInfo->getStorage()->instanceOfStorage(IHomeStorage::class)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue