Merge pull request #2247 from thornbill/cant-stop-wont-stop
Always allow stopping via the action menu
This commit is contained in:
@@ -556,6 +556,7 @@ import { appRouter } from '../appRouter';
|
||||
const options = {
|
||||
play: false,
|
||||
queue: false,
|
||||
stopPlayback: true,
|
||||
clearQueue: true,
|
||||
positionTo: contextButton
|
||||
};
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user