mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-03 11:06:50 +01:00
Fixed: Force grabbing selected delayed items in queue
This commit is contained in:
parent
c402a831f8
commit
79cae0add4
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