From 258782584e490b92ccfcf032921aa7062a28da9f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 30 Sep 2012 03:58:58 +0200 Subject: [PATCH] fix mimetype detection using the 'file' command in some edge cases --- lib/helper.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/helper.php b/lib/helper.php index 8e578735f4c..908a61b5a2d 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -370,6 +370,7 @@ class OC_Helper { //trim the character set from the end of the response $mimeType=substr($reply,0,strrpos($reply,' ')); + $mimeType=substr($mimeType,0,strrpos($mimeType,"\n")); //trim ; if (strpos($mimeType, ';') !== false) { -- 2.39.5