Skip to content

Commit

Permalink
Merge pull request #39903 from nextcloud/no-dav-acl-files
Browse files Browse the repository at this point in the history
don't bother checking dav acl's in files
  • Loading branch information
icewind1991 authored Aug 18, 2023
2 parents f5f3d68 + 1a9dcc5 commit c7035ee
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 c7035ee

Please sign in to comment.