diff --git a/static/playHLSVideo.js b/static/playHLSVideo.js index d0da746..4f54e09 100644 --- a/static/playHLSVideo.js +++ b/static/playHLSVideo.js @@ -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(); }