Browse Source

Merge pull request #22648 from nextcloud/bugfix/noid/transfer-all-shares

Transfer shares if no path provided
pull/22744/head
Joas Schilling 5 years ago
committed by GitHub
parent
commit
f0b46ea605
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      apps/files/lib/Service/OwnershipTransferService.php

4
apps/files/lib/Service/OwnershipTransferService.php

@ -247,7 +247,7 @@ class OwnershipTransferService {
private function collectUsersShares(string $sourceUid,
OutputInterface $output,
View $view,
?string $path = null): array {
string $path): array {
$output->writeln("Collecting all share information for files and folders of $sourceUid ...");
$shares = [];
@ -260,7 +260,7 @@ class OwnershipTransferService {
if (empty($sharePage)) {
break;
}
if ($path !== null) {
if ($path !== "$sourceUid/files") {
$sharePage = array_filter($sharePage, function (IShare $share) use ($view, $path) {
try {
$relativePath = $view->getPath($share->getNodeId());

Loading…
Cancel
Save