Merge pull request #26677 from nextcloud/backport/26658/stable21
[stable21] Do not stop directory listing when ACL is blocking access
This commit is contained in:
commit
52c070acaa
|
@ -261,7 +261,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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue