mirror of
https://github.com/Readarr/Readarr
synced 2025-12-15 21:02:40 +01:00
Fixed: Force grabbing selected delayed items in queue
This commit is contained in:
parent
84faeca0d3
commit
cc6db7a9e5
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ class Queue extends Component {
|
|||
|
||||
const selectedIds = this.getSelectedIds();
|
||||
const isPendingSelected = _.some(this.props.items, (item) => {
|
||||
return selectedIds.indexOf(item.id) > -1 && item.status === 'Delay';
|
||||
return selectedIds.indexOf(item.id) > -1 && item.status === 'delay';
|
||||
});
|
||||
|
||||
if (isPendingSelected !== this.state.isPendingSelected) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue