Browse Source

Merge pull request #44052 from nextcloud/backport/43086/stable27

tags/v27.1.9rc1
Benjamin Gaussorgues 1 month ago
parent
commit
af18e5ff8a
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      lib/private/Files/ObjectStore/S3ObjectTrait.php

+ 2
- 1
lib/private/Files/ObjectStore/S3ObjectTrait.php View File

$copy->copy(); $copy->copy();
} else { } else {
$this->getConnection()->copy($this->getBucket(), $from, $this->getBucket(), $to, 'private', array_merge([ $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)); ], $options));
} }
} }

Loading…
Cancel
Save