Don't process queue item without details

This commit is contained in:
Mark McDowall 2020-07-26 10:49:39 -07:00 committed by Qstick
parent 2f3888f5ed
commit 62724e7054
1 changed files with 1 additions and 1 deletions

View File

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