1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

Fixed: Can ignore queue items with unknown episodes

This commit is contained in:
Mark McDowall
2020-04-20 17:56:36 -07:00
parent 7f28ab895a
commit 27d98868b8
+1 -1
View File
@@ -356,7 +356,7 @@ class QueueRow extends Component {
<RemoveQueueItemModal
isOpen={isRemoveQueueItemModalOpen}
sourceTitle={title}
canIgnore={!!(series && episode)}
canIgnore={!!series}
onRemovePress={this.onRemoveQueueItemModalConfirmed}
onModalClose={this.onRemoveQueueItemModalClose}
/>