mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
Make HLS support checking more robust (#61)
This commit is contained in:
parent
22910956db
commit
5de171b13a
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
var autoplay = oldVideo.classList.contains("hls_autoplay");
|
||||
|
||||
// If HLS is supported natively then don't use hls.js
|
||||
if (oldVideo.canPlayType(source.type)) {
|
||||
if (oldVideo.canPlayType(source.type) === "probably") {
|
||||
if (autoplay) {
|
||||
oldVideo.play();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue