Skip to content

Commit

Permalink
Remove search-files capability from defaults (#2245)
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann authored Nov 8, 2021
1 parent bb40f54 commit 80f5ec9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/capability-search-files
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Don't announce search-files capability

The `dav.reports` capability contained a `search-files` report which is currently not implemented. We removed it from the defaults.

https://github.com/cs3org/reva/pull/2245
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (h *Handler) Init(c *config.Config) {
h.c.Capabilities.Dav.Trashbin = "1.0"
}
if h.c.Capabilities.Dav.Reports == nil {
h.c.Capabilities.Dav.Reports = []string{"search-files"}
h.c.Capabilities.Dav.Reports = []string{}
}

// sharing
Expand Down

0 comments on commit 80f5ec9

Please sign in to comment.