Remove diag line

This commit is contained in:
2020-04-12 14:26:43 +01:00
parent a9416936ef
commit c405c38952

View File

@@ -31,7 +31,7 @@
if (
!/Android|webOS|iPhone|iPad|iPod|Edge|iOS/i.test(navigator.userAgent) &&
Hls.isSupported() && false
Hls.isSupported()
) {
console.log("Using HLS.js");
hls = new Hls();
@@ -40,6 +40,7 @@
hls.on(Hls.Events.MANIFEST_PARSED, vidPlayer.play);
}
else {
console.log("Skipping HLS.js");
vidPlayer.src = url;
vidPlayer.play();
}