mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
fix(files): Fix ownership transfer encrypted files detection
Discovered by psalm update Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
26c4ca264f
commit
4c27e88b40
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