diff options
-rw-r--r-- | backend.js | 1 | ||||
-rw-r--r-- | socket.js | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/backend.js b/backend.js index 573a4fc..20aec7d 100644 --- a/backend.js +++ b/backend.js @@ -523,6 +523,7 @@ class QueuePlayer extends EventEmitter { this.playingTrack = null this.timeData = null this.time = null + this.emit('playing details', null, oldTrack, this) this.emit('playing', null, oldTrack, this) } } diff --git a/socket.js b/socket.js index acc1a21..ab23a28 100644 --- a/socket.js +++ b/socket.js @@ -162,6 +162,8 @@ function validateCommand(command) { ) || command.status === 'sync-playback' ) + case 'stop-playing': + return typeof command.queuePlayer === 'string' case 'unqueue': return ( typeof command.queuePlayer === 'string' && @@ -450,6 +452,9 @@ function attachBackendToSocketClient(backend, client, { }, command.startingTrack ? 500 : 0) return } + case 'stop-playing': + if (QP) silenceEvents(QP, ['playing'], () => QP.stopPlaying()) + return case 'unqueue': if (QP) silenceEvents(QP, ['unqueue'], () => QP.unqueue( restoreNewItem(command.topItem, getPlaylistSources()) @@ -506,6 +511,11 @@ function attachBackendToSocketClient(backend, client, { queuePlayer: queuePlayer.id }) }) + } else { + client.sendCommand({ + code: 'stop-playing', + queuePlayer: queuePlayer.id + }) } }) |