Skip to content

Commit

Permalink
Merge pull request #44053 from nextcloud/backport/43086/stable28
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv committed Mar 19, 2024
2 parents 2b6affc + 33699b2 commit 6209b6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/private/Files/ObjectStore/S3ObjectTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ public function copyObject($from, $to, array $options = []) {
$copy->copy();
} else {
$this->getConnection()->copy($this->getBucket(), $from, $this->getBucket(), $to, 'private', array_merge([
'params' => $this->getSSECParameters() + $this->getSSECParameters(true)
'params' => $this->getSSECParameters() + $this->getSSECParameters(true),
'mup_threshold' => PHP_INT_MAX,
], $options));
}
}
Expand Down

0 comments on commit 6209b6e

Please sign in to comment.