Check for existing monitorStream to avoid js errors

pull/4198/head
Isaac Connor 2024-12-04 15:07:29 -05:00
parent ea41d4f6b6
commit 57fb0cba1b
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ function onPause() {
function streamCmdPause(action) {
onPause();
if (action) {
if (action && monitorStream) {
monitorStream.pause();
}
}