Skip to content

Commit

Permalink
[amazonechocontrol] Broken last voice command on Fire TV Cube (#583)
Browse files Browse the repository at this point in the history
* fixed: boken last voice command on Fire TV Cube

Signed-off-by: Tom Blum <[email protected]>
(cherry picked from commit 773db12)
  • Loading branch information
Trinitus01 authored and J-N-K committed Jul 10, 2024
1 parent 1abc283 commit 3d21423
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,8 @@ public void onPushCommandReceived(PushCommandTO pushCommand) {
return;
}
echoHandler.handlePushCommand(pushCommand.command, payload);
if ("PUSH_EQUALIZER_STATE_CHANGE".equals(pushCommand.command)) {
if ("PUSH_EQUALIZER_STATE_CHANGE".equals(pushCommand.command)
|| "PUSH_VOLUME_CHANGE".equals(pushCommand.command)) {
ScheduledFuture<?> refreshActivityJob = this.refreshActivityJob;
if (refreshActivityJob != null) {
refreshActivityJob.cancel(false);
Expand Down

0 comments on commit 3d21423

Please sign in to comment.