diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-11 17:47:46 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-11 17:47:46 +0100 |
commit | 68f3f2e691a254349efb1f15953659b42ce8ad3e (patch) | |
tree | 3272495d28c3173c3c3b2b56f3a7cfdab495723e /lib | |
parent | 2628601e79b8bebfdd6b1a03ef915ca9b1bd629a (diff) | |
download | nextcloud-server-68f3f2e691a254349efb1f15953659b42ce8ad3e.tar.gz nextcloud-server-68f3f2e691a254349efb1f15953659b42ce8ad3e.zip |
make it possible to detect transferID part
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/connector/sabre/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 8621b7f3689..cec3c0ed7e2 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -225,7 +225,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if ($chunk_handler->isComplete()) { // we first assembly the target file as a part file - $partFile = $path . '/' . $info['name'] . '-' . $info['transferid'] . '.part'; + $partFile = $path . '/' . $info['name'] . '.ocTransferId' . $info['transferid'] . '.part'; $chunk_handler->file_assemble($partFile); // here is the final atomic rename |