diff --git a/src/components/nowPlayingBar/nowPlayingBar.js b/src/components/nowPlayingBar/nowPlayingBar.js index 2613b5a855..cbeb9813dd 100644 --- a/src/components/nowPlayingBar/nowPlayingBar.js +++ b/src/components/nowPlayingBar/nowPlayingBar.js @@ -556,6 +556,7 @@ import { appRouter } from '../appRouter'; const options = { play: false, queue: false, + stopPlayback: true, clearQueue: true, positionTo: contextButton }; diff --git a/src/components/remotecontrol/remotecontrol.js b/src/components/remotecontrol/remotecontrol.js index dec95a470c..49fb8370c5 100644 --- a/src/components/remotecontrol/remotecontrol.js +++ b/src/components/remotecontrol/remotecontrol.js @@ -209,11 +209,10 @@ function updateNowPlayingInfo(context, state, serverId) { if (autoFocusContextButton) { contextButton.focus(); } - const stopPlayback = !!layoutManager.mobile; const options = { play: false, queue: false, - stopPlayback: stopPlayback, + stopPlayback: true, clearQueue: true, openAlbum: false, positionTo: contextButton