Merge pull request #26658 from nextcloud/bugfix/noid/continue-on-denied-acls

Do not stop directory listing when ACL is blocking access
This commit is contained in:
Morris Jobke 2021-04-20 21:35:19 +02:00 committed by GitHub
commit 5448306238
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ class SMB extends Common implements INotifyStorage {
// additionally, it's better to have false negatives here then false positives
if ($acl->denies(ACL::MASK_READ) || $acl->denies(ACL::MASK_EXECUTE)) {
$this->logger->debug('Hiding non readable entry ' . $file->getName());
return false;
continue;
}
}