mirror of
https://github.com/nextcloud/server.git
synced 2026-06-06 23:34:22 -04:00
fix(dav): Don't log access control as error
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
19d11117a5
commit
c57df2777a
1 changed files with 3 additions and 0 deletions
|
|
@ -65,6 +65,9 @@ class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
|
|||
// forbidden can be expected when trying to upload to
|
||||
// read-only folders for example
|
||||
Forbidden::class => true,
|
||||
// our forbidden is expected when access control is blocking
|
||||
// an item in a folder
|
||||
\OCA\DAV\Connector\Sabre\Exception\Forbidden::class => true,
|
||||
// Happens when an external storage or federated share is temporarily
|
||||
// not available
|
||||
StorageNotAvailableException::class => true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue