Don't process queue item without details

pull/1807/head
Mark McDowall 4 years ago committed by Qstick
parent 2f3888f5ed
commit 62724e7054

@ -5,7 +5,7 @@ function createQueueItemSelector() {
(state, { albumId }) => albumId,
(state) => state.queue.details.items,
(albumId, details) => {
if (!albumId) {
if (!albumId || !details) {
return null;
}

Loading…
Cancel
Save