Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/8b57b33c9912537c4606f90756c1e89bcc6f7e9c You should set ROOT_URL correctly, otherwise the web may not work correctly.

New: Don't initially select 0 byte files in Interactive Import

(cherry picked from commit 04bd535cfca5e25c6a2d5417c6f18d5bf5180f67)

Closes 
pull/4779/head
Stevie Robinson 12 months ago committed by Bogdan
parent 580e4becbe
commit 8b57b33c99

@ -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 });
}

Loading…
Cancel
Save