From 255f0bac245aa2fe4bf660b2b9c9f78020a45f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 15 Jan 2021 14:47:40 +0000 Subject: [PATCH] fix rendering of multiple checksums MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- apps/dav/lib/Connector/Sabre/ChecksumList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/Connector/Sabre/ChecksumList.php b/apps/dav/lib/Connector/Sabre/ChecksumList.php index 422f45cb9c4f..f57e26616f35 100644 --- a/apps/dav/lib/Connector/Sabre/ChecksumList.php +++ b/apps/dav/lib/Connector/Sabre/ChecksumList.php @@ -39,7 +39,7 @@ class ChecksumList implements XmlSerializable { * @param string $checksum */ public function __construct($checksum) { - $this->checksums = \explode(',', $checksum); + $this->checksums = \explode(' ', $checksum); } /**