mirror of
https://github.com/nextcloud/server.git
synced 2026-07-16 23:12:04 -04:00
Correctly detect the mimetype from uploads
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0b63292c57
commit
ba247125a6
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class FileMimeType extends AbstractStringCheck {
|
|||
$files = $this->request->getUploadedFile('files');
|
||||
if (isset($files['type'][0])) {
|
||||
$mimeType = $files['type'][0];
|
||||
if ($this->mimeType === 'application/octet-stream') {
|
||||
if ($mimeType === 'application/octet-stream') {
|
||||
// Maybe not...
|
||||
$mimeTypeTest = $this->mimeTypeDetector->detectPath($files['name'][0]);
|
||||
if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue