Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/62724e7054242bbca032cf36ecc6dd726e1517dd?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Don't process queue item without details

pull/1807/head
Mark McDowall 5 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