From 27a3127883aca1763578b365738722c270fab5f6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 13 Oct 2019 07:40:17 +0200 Subject: - update to 1.0.56 - drop patch merged upstream --- 1081.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 1081.patch (limited to '1081.patch') diff --git a/1081.patch b/1081.patch deleted file mode 100644 index 71c0dd4..0000000 --- a/1081.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 1c4f297d30f51493c6ed54c827ad85132b3c8f61 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Fri, 11 Oct 2019 12:00:18 +0200 -Subject: [PATCH] add 'application/x-empty' for 7.4 - ---- - src/Adapter/Local.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Adapter/Local.php b/src/Adapter/Local.php -index 3236349a..c6e6fa86 100644 ---- a/src/Adapter/Local.php -+++ b/src/Adapter/Local.php -@@ -319,7 +319,7 @@ public function getMimetype($path) - $finfo = new Finfo(FILEINFO_MIME_TYPE); - $mimetype = $finfo->file($location); - -- if (in_array($mimetype, ['application/octet-stream', 'inode/x-empty'])) { -+ if (in_array($mimetype, ['application/octet-stream', 'inode/x-empty', 'application/x-empty'])) { - $mimetype = Util\MimeType::detectByFilename($location); - } - -- cgit