Fix bad mimetype when importing csv from a windows computer

This commit is contained in:
osaajani 2020-07-03 03:59:37 +02:00
parent b12738073b
commit cafe210f69
2 changed files with 15 additions and 2 deletions

View file

@ -302,7 +302,18 @@ namespace controllers\publics;
break;
default:
$invalid_type = true;
if ($read_file['extension'] === 'csv')
{
$result = $this->internal_contact->import_csv($id_user, $read_file['content']);
}
elseif ($read_file['extension'] === 'json')
{
$result = $this->internal_contact->import_json($id_user, $read_file['content']);
}
else
{
$invalid_type = true;
}
}
if ($invalid_type)