diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-03-16 10:15:41 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-03-21 15:14:58 +0100 |
commit | f28f5380295b16d89f81994fc990924b8f15fa20 (patch) | |
tree | d5e26fce68069ec7f6ae9fa5571917311fb4880a /apps/dav/lib/connector | |
parent | 86581f66265be0dddb97f67ac867a5cb92d335e0 (diff) | |
download | nextcloud-server-f28f5380295b16d89f81994fc990924b8f15fa20.tar.gz nextcloud-server-f28f5380295b16d89f81994fc990924b8f15fa20.zip |
Do not fire pre/post hooks twice on chunk upload
Diffstat (limited to 'apps/dav/lib/connector')
-rw-r--r-- | apps/dav/lib/connector/sabre/file.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/connector/sabre/file.php b/apps/dav/lib/connector/sabre/file.php index 59b3a6e7483..6b698c6e5a9 100644 --- a/apps/dav/lib/connector/sabre/file.php +++ b/apps/dav/lib/connector/sabre/file.php @@ -433,7 +433,7 @@ class File extends Node implements IFile { list($partStorage, $partInternalPath) = $this->fileView->resolvePath($partFile); - $chunk_handler->file_assemble($partStorage, $partInternalPath, $this->fileView->getAbsolutePath($targetPath)); + $chunk_handler->file_assemble($partStorage, $partInternalPath); // here is the final atomic rename $renameOkay = $targetStorage->moveFromStorage($partStorage, $partInternalPath, $targetInternalPath); @@ -452,7 +452,7 @@ class File extends Node implements IFile { } } else { // assemble directly into the final file - $chunk_handler->file_assemble($targetStorage, $targetInternalPath, $this->fileView->getAbsolutePath($targetPath)); + $chunk_handler->file_assemble($targetStorage, $targetInternalPath); } // allow sync clients to send the mtime along in a header |