add quotes in js

This commit is contained in:
2021-05-12 09:31:48 +02:00
parent 3d2c1609bc
commit e28fcf1ad4

@ -13,10 +13,10 @@
let player = videojs("player");
let source = {};
source.type = ctype;
source.src = {{ stream }};
source.src = "{{ stream }}";
player.src(source);
}
xhr.open("HEAD", {{ stream }}, true);
xhr.open("HEAD", "{{ stream }}", true);
xhr.send();
</script>
</body>