Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/e0d880f1da09f010a0aa584afac12e428015c932 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Small change to creating an itemMap during item update

Closes 

(cherry picked from commit 7f28ab895a73fe0677c62388b82e4d5f73e5c023)
pull/1689/head
Mark McDowall 5 years ago committed by Qstick
parent 65caac3380
commit e0d880f1da

@ -72,8 +72,12 @@ export default function createHandleActions(handlers, defaultState, section) {
if (section === baseSection) {
const newState = getSectionState(state, payloadSection);
const items = newState.items;
const itemMap = newState.itemMap ?? {};
// Client side collections that are created by adding items to an
// existing array may not have an itemMap, the array is probably empty,
// but on the offchance it's not create a new item map based on the
// items in the array.
const itemMap = newState.itemMap ?? createItemMap(items);
const index = payload.id in itemMap ? itemMap[payload.id] : -1;
newState.items = [...items];

Loading…
Cancel
Save