Skip to content
Snippets Groups Projects
Commit 85abede9 authored by Robin Appelman's avatar Robin Appelman
Browse files

actually return result

parent 0470a5ba
No related branches found
No related tags found
No related merge requests found
......@@ -377,9 +377,9 @@ class OC_Helper {
}
$extension=strtolower(strrchr(basename($path), "."));
$extension=substr($extension, 1);//remove leading .
$mimeType=(isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream';
return (isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream';
}else{
$mimeType='application/octet-stream';
return 'application/octet-stream';
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment