diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index 1e834811bd18f..fd45e6c35df9b 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -269,8 +269,8 @@ private function batchDelete(?string $path = null): bool { $connection->deleteObjects([ 'Bucket' => $this->bucket, 'Delete' => [ + 'Quiet' => true, 'Objects' => array_map(fn (array $object) => [ - 'ETag' => $object['ETag'], 'Key' => $object['Key'], ], $objects['Contents']) ]