Skip to content

Commit

Permalink
Merge pull request #43983 from nextcloud/fix/s3-upload-shared-lock
Browse files Browse the repository at this point in the history
Use the proper path to check if a file needs to be copied/moved to the actual target storage
  • Loading branch information
icewind1991 authored Mar 8, 2024
2 parents b6691b3 + ca453f5 commit 94ebc97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/Upload/ChunkingV2Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private function completeChunkedWrite(string $targetAbsolutePath): void {

// If the file was not uploaded to the user storage directly we need to copy/move it
try {
$uploadFileAbsolutePath = Filesystem::getRoot() . $uploadFile->getPath();
$uploadFileAbsolutePath = $uploadFile->getFileInfo()->getPath();
if ($uploadFileAbsolutePath !== $targetAbsolutePath) {
$uploadFile = $rootFolder->get($uploadFile->getFileInfo()->getPath());
if ($exists) {
Expand Down

0 comments on commit 94ebc97

Please sign in to comment.