mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Correctly detect the mimetype from uploads
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
cc6874df19
commit
744b635d5c
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ class FileMimeType extends AbstractStringCheck implements IFileCheck {
|
|||
$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