From 258782584e490b92ccfcf032921aa7062a28da9f Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
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 8e578735f4..908a61b5a2 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) {
-- 
GitLab