Skip to content

Commit

Permalink
FIx command => streamCommand. Fixes #4150
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Connor committed Sep 26, 2024
1 parent d8cfce4 commit 0ee28ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/skins/classic/views/js/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function streamCmdSlowFwd(action) {
setButtonState('fastRevBtn', 'inactive');
}
if (action) {
monitorStream.command(CMD_SLOWFWD);
monitorStream.streamCommand(CMD_SLOWFWD);
}
setButtonState('pauseBtn', 'active');
if (monitorStreamReplayBuffer) {
Expand All @@ -273,7 +273,7 @@ function streamCmdSlowRev(action) {
setButtonState('fastRevBtn', 'inactive');
}
if (action) {
monitorStream.command(CMD_SLOWREV);
monitorStream.streamCommand(CMD_SLOWREV);
}
setButtonState('pauseBtn', 'active');
if (monitorStreamReplayBuffer) {
Expand All @@ -292,7 +292,7 @@ function streamCmdFastRev(action) {
setButtonState('fastRevBtn', 'inactive');
}
if (action) {
monitorStream.command(CMD_FASTREV);
monitorStream.streamCommand(CMD_FASTREV);
}
}

Expand Down

0 comments on commit 0ee28ca

Please sign in to comment.