Merge pull request #17295 from nextcloud/backport/17286/stable17
[stable17] Correctly detect the mimetype from uploads
This commit is contained in:
commit
7cceb667e9
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