Skip to content

Commit

Permalink
Fixed spinner not disappearing for audio-only mountpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Dec 6, 2023
1 parent f8a56c9 commit 6f6ac5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/streamingtest.js
Expand Up @@ -199,7 +199,7 @@ $(document).ready(function() {
$('#'+mstreamId).append(
'<div class="no-video-container audioonly">' +
'<i class="fa-solid fa-video fa-xl no-video-icon"></i>' +
'<span class="no-video-text">No webcam available</span>' +
'<span class="no-video-text">No video available</span>' +
'</div>');
}
}
Expand Down Expand Up @@ -396,7 +396,7 @@ function startStream() {
}
}
if($('#mstream0').length === 0) {
addPanel("0", mid);
addPanel("0", (mid ? mid : "0"));
// No remote video yet
$('#mstream0').append('<video class="rounded centered waitingvideo" id="waitingvideo0" width="100%" height="100%" />');
}
Expand Down

0 comments on commit 6f6ac5e

Please sign in to comment.