summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-07-06 19:43:16 +0200
committerGitHub <noreply@github.com>2022-07-06 19:43:16 +0200
commit72274cf0e9186f86187678e7247c9fe17ec0c947 (patch)
tree316ba3a812c216fe355a15b20f8dc648a760ff67
parentdfbfe5ac9d07c899b256a2772b2d9f3b0ced5b04 (diff)
parentec096051091b3978de86294b008e80e0ed361e48 (diff)
downloadnextcloud-server-72274cf0e9186f86187678e7247c9fe17ec0c947.tar.gz
nextcloud-server-72274cf0e9186f86187678e7247c9fe17ec0c947.zip
Merge pull request #33136 from nextcloud/fix/noid/customprops
catch any exception for transaction control
-rw-r--r--apps/dav/lib/DAV/CustomPropertiesBackend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/DAV/CustomPropertiesBackend.php b/apps/dav/lib/DAV/CustomPropertiesBackend.php
index dd90ec56d66..0110990a408 100644
--- a/apps/dav/lib/DAV/CustomPropertiesBackend.php
+++ b/apps/dav/lib/DAV/CustomPropertiesBackend.php
@@ -24,7 +24,7 @@
*/
namespace OCA\DAV\DAV;
-use OCP\DB\Exception;
+use Exception;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
use OCP\IUser;