diff --git a/src/plugins/htmlAudioPlayer/plugin.js b/src/plugins/htmlAudioPlayer/plugin.js index baa396dbb8..adbd291663 100644 --- a/src/plugins/htmlAudioPlayer/plugin.js +++ b/src/plugins/htmlAudioPlayer/plugin.js @@ -74,7 +74,7 @@ function enableHlsPlayer(url, item, mediaSource, mediaType) { type: 'HEAD' }).then(function (response) { const contentType = (response.headers.get('Content-Type') || '').toLowerCase(); - if (contentType === 'application/x-mpegurl') { + if (contentType === 'application/vnd.apple.mpegurl') { resolve(); } else { reject();