Skip to content

Commit

Permalink
don't bother checking dav acl's in files
Browse files Browse the repository at this point in the history
any permissions for files is handled in the filesystem layer anyway

Signed-off-by: Robin Appelman <robin@icewind.nl>
  • Loading branch information
icewind1991 authored and backportbot-nextcloud[bot] committed Aug 18, 2023
1 parent 7901a70 commit dbc80b0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/dav/lib/Connector/Sabre/DavAclPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT,
}

public function propFind(PropFind $propFind, INode $node) {
if ($node instanceof Node) {
// files don't use dav acls
return;
}

// If the node is neither readable nor writable then fail unless its of
// the standard user-principal
if (!($node instanceof User)) {
Expand Down

0 comments on commit dbc80b0

Please sign in to comment.