mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[contents] Add MIME type for mp3 (#2809)
Without this, format tests fail on systems without `/etc/mime.types`.
This commit is contained in:
parent
1af6cbeb1e
commit
347f9a3eda
@ -369,7 +369,8 @@ function getMimeType($url) {
|
||||
'jpg' => 'image/jpeg',
|
||||
'gif' => 'image/gif',
|
||||
'png' => 'image/png',
|
||||
'image' => 'image/*'
|
||||
'image' => 'image/*',
|
||||
'mp3' => 'audio/mpeg',
|
||||
);
|
||||
// '@' is used to mute open_basedir warning, see issue #818
|
||||
if (@is_readable('/etc/mime.types')) {
|
||||
|
Loading…
Reference in New Issue
Block a user