mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 00:27:49 -04:00
fix(S3ObjectTrait): cast $urn to a string until typing adding elsewhere
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
ace9eb21e6
commit
d5d34adcbb
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ trait S3ObjectTrait {
|
|||
$uploader = new MultipartUploader($this->getConnection(), $stream, [
|
||||
'bucket' => $this->bucket,
|
||||
'concurrency' => $concurrency,
|
||||
'key' => $urn,
|
||||
'key' => (string) $urn,
|
||||
'part_size' => $this->uploadPartSize,
|
||||
'state' => $state,
|
||||
'params' => [
|
||||
|
|
|
|||
Loading…
Reference in a new issue