Fix video=>video_el

pull/4342/merge
Isaac Connor 2025-09-25 10:29:58 -04:00
parent a8fe4711a2
commit b48476bff0
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ function MonitorStream(monitorData) {
}
const video_el = document.querySelector('video');
if (video_el) {
video.addEventListener('play', (e) => {
video_el.addEventListener('play', (e) => {
this.createVolumeSlider();
}, this);
}