]> source.dussan.org Git - nextcloud-server.git/commitdiff
Don't log Microsoft WebDAV client trying to tag things 22799/head
authorJoas Schilling <coding@schilljs.com>
Fri, 11 Sep 2020 09:52:05 +0000 (11:52 +0200)
committerJoas Schilling <coding@schilljs.com>
Fri, 11 Sep 2020 09:52:05 +0000 (11:52 +0200)
Signed-off-by: Joas Schilling <coding@schilljs.com>
apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php

index 0bd0a54d66719d40e35fc536f7db27aaa5fa5ef8..ad590c8cf34be69eb7103acc103db7d770ae3152 100644 (file)
@@ -32,6 +32,7 @@ use OCA\DAV\Connector\Sabre\Exception\FileLocked;
 use OCA\DAV\Connector\Sabre\Exception\PasswordLoginForbidden;
 use OCP\Files\StorageNotAvailableException;
 use OCP\ILogger;
+use Sabre\DAV\Exception\BadRequest;
 use Sabre\DAV\Exception\Conflict;
 use Sabre\DAV\Exception\Forbidden;
 use Sabre\DAV\Exception\InvalidSyncToken;
@@ -54,6 +55,10 @@ class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
                // the sync client uses this to find out whether files exist,
                // so it is not always an error, log it as debug
                NotFound::class => true,
+               // the sync client messed up their request
+               // (e.g. propfind for tags with string instead of int)
+               // so it is not always an error, log it as debug
+               BadRequest::class => true,
                // this one mostly happens when the same file is uploaded at
                // exactly the same time from two clients, only one client
                // wins, the second one gets "Precondition failed"