From 9348e3d2f693b4f278fb2eb13c225f7ea2bbb9bb Mon Sep 17 00:00:00 2001 From: Jan-Philipp Litza Date: Mon, 28 Jan 2019 17:11:14 +0100 Subject: [PATCH] dav: Fix handling of chunked WebDAV upload When $data is null (which can happen when $request->getBodyAsStream() returns null), the Exceptions says "copied bytes: 0, expected filesize: 0", which sounds more like success... --- apps/dav/lib/Connector/Sabre/File.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index f948f0f552..111b192510 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -188,7 +188,9 @@ class File extends Node implements IFile { if (isset($_SERVER['CONTENT_LENGTH'])) { $expected = $_SERVER['CONTENT_LENGTH']; } - throw new Exception('Error while copying file to target location (copied bytes: ' . $count . ', expected filesize: ' . $expected . ' )'); + if ($expected !== "0") { + throw new Exception('Error while copying file to target location (copied bytes: ' . $count . ', expected filesize: ' . $expected . ' )'); + } } // if content length is sent by client: