On wall_attach, file extension to mimetype matching now breaks the filename at the last . character instead of the first

This commit is contained in:
Colby Sollars 2021-02-16 15:50:20 -07:00
parent 0c7c1efbd7
commit 5151a82d5e
1 changed files with 1 additions and 1 deletions

View File

@ -1088,7 +1088,7 @@ class Mimetype
'zsh' => 'text/x-script.zsh'
];
$dot = strpos($filename, '.');
$dot = strrpos($filename, '.');
if ($dot !== false) {
$ext = strtolower(substr($filename, $dot + 1));
if (array_key_exists($ext, $mime_types)) {