Skip to content

Commit

Permalink
Merge pull request #44084 from nextcloud/backport/43983/stable27
Browse files Browse the repository at this point in the history
[stable27] Use the proper path to check if a file needs to be copied/moved to the actual target storage
  • Loading branch information
susnux authored Mar 8, 2024
2 parents 355bc5e + 93c0335 commit dc52a25
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 dc52a25

Please sign in to comment.