diff options
author | Robin Appelman <robin@icewind.nl> | 2018-10-31 19:41:55 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-10-31 21:10:57 +0100 |
commit | 9b3cc72f7c033c4dba9a2b1e21e0e38f488318b5 (patch) | |
tree | 288135a768e3a77700a8addb9b1b9a7a8b27a925 /apps | |
parent | 4094a5e74a6d64050bbaeac8325895c9b226f328 (diff) | |
download | nextcloud-server-9b3cc72f7c033c4dba9a2b1e21e0e38f488318b5.tar.gz nextcloud-server-9b3cc72f7c033c4dba9a2b1e21e0e38f488318b5.zip |
fix writeStream for jail wrapper
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/File.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index a8e6d8b907c..57c072fda47 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -224,7 +224,7 @@ class File extends Node implements IFile { $renameOkay = $storage->moveFromStorage($partStorage, $internalPartPath, $internalPath); $fileExists = $storage->file_exists($internalPath); if ($renameOkay === false || $fileExists === false) { - \OC::$server->getLogger()->error('renaming part file to final file failed ($run: ' . ($run ? 'true' : 'false') . ', $renameOkay: ' . ($renameOkay ? 'true' : 'false') . ', $fileExists: ' . ($fileExists ? 'true' : 'false') . ')', ['app' => 'webdav']); + \OC::$server->getLogger()->error('renaming part file to final file failed $renameOkay: ' . ($renameOkay ? 'true' : 'false') . ', $fileExists: ' . ($fileExists ? 'true' : 'false') . ')', ['app' => 'webdav']); throw new Exception('Could not rename part file to final file'); } } catch (ForbiddenException $ex) { |