mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Fixed: Force grabbing selected delayed items in queue
This commit is contained in:
parent
74a0a57468
commit
b93e8da235
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…
Add table
Add a link
Reference in a new issue