This commit is contained in:
Thomas Zarebczan 2021-07-20 14:18:55 -04:00
parent ca9eaa054d
commit eb498bdceb
No known key found for this signature in database
GPG key ID: D505010BDB4364BC

View file

@ -510,7 +510,7 @@ export default React.memo<Props>(function VideoJs(props: Props) {
// do we need to check if explicitly redirected // do we need to check if explicitly redirected
// or is checking extension only a safer method // or is checking extension only a safer method
if (response && response.redirected && response.url && response.url.endsWith('m3u8')) { if (response && response.redirected && response.url && response.url.endsWith('m3u8')) {
finalType = 'application/x-mpegURL'; finalType = 'application/vnd.apple.mpegurl';
finalSource = response.url; finalSource = response.url;
} }