Fix typo in hlsPlayback script

This commit is contained in:
Zed 2021-12-26 23:49:51 +01:00
parent c0274af0c3
commit ffd9843197

View file

@ -16,7 +16,7 @@ function playVideo(overlay) {
});
} else if (video.canPlayType('application/vnd.apple.mpegurl')) {
video.src = url;
video.addEventListened('canplay', function() {
video.addEventListener('canplay', function() {
video.play();
});
}