diff --git a/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js b/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js index af3734406..f5395ccbc 100644 --- a/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js +++ b/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js @@ -48,14 +48,16 @@ class InteractiveImportRow extends Component { artist, album, tracks, - quality + quality, + size } = this.props; if ( artist && album != null && tracks.length && - quality + quality && + size > 0 ) { this.props.onSelectedChange({ id, value: true }); }