Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2022-07-06 17:13:59 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-07-29 23:12:30 +0300
commit9dfd2966ab1c4917ca3aff6722277253ad6c64e5 (patch)
tree23b989c307a9987b723451b84b8f65f3b6cd77f1
parentefdc3a4cd95ffe57b88678f0121585b041939a39 (diff)
catch any exception for transaction controlbackport/33090/stable23
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-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 3a2de9788f5..8513574b35d 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;