mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
Fixed: Queue Items don't show up
This commit is contained in:
parent
f3d7852ec4
commit
0b113b9bab
2 changed files with 8 additions and 4 deletions
|
@ -44,10 +44,14 @@ class Queue extends Component {
|
|||
|
||||
componentDidUpdate(prevProps) {
|
||||
const {
|
||||
items
|
||||
items,
|
||||
isMoviesFetching
|
||||
} = this.props;
|
||||
|
||||
if (hasDifferentItems(prevProps.items, items) && !items.some((e) => e.movieId)) {
|
||||
if (
|
||||
(!isMoviesFetching && prevProps.isMoviesFetching) ||
|
||||
(hasDifferentItems(prevProps.items, items) && !items.some((e) => e.movieId))
|
||||
) {
|
||||
this.setState((state) => {
|
||||
return {
|
||||
...removeOldSelectedState(state, getRemovedItems(prevProps.items, items)),
|
||||
|
|
|
@ -17,7 +17,7 @@ const blacklistedProperties = [
|
|||
];
|
||||
|
||||
function createItemMap(data) {
|
||||
return data.reduce((acc, d, index, array) => {
|
||||
return data.reduce((acc, d, index) => {
|
||||
acc[d.id] = index;
|
||||
return acc;
|
||||
}, {});
|
||||
|
@ -49,7 +49,7 @@ export default function createHandleActions(handlers, defaultState, section) {
|
|||
|
||||
if (_.isArray(payload.data)) {
|
||||
newState.items = payload.data;
|
||||
newState.itemMap = createItemMap(newState.items);
|
||||
newState.itemMap = createItemMap(payload.data);
|
||||
} else {
|
||||
newState.item = payload.data;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue