Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/c749405a45659780780e5ecaa9d44952e6d264e2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
2 deletions
@ -34,6 +34,7 @@ class SelectAlbumRow extends Component {
render ( ) {
const {
title ,
disambiguation ,
albumType ,
releaseDate ,
statistics ,
@ -47,6 +48,8 @@ class SelectAlbumRow extends Component {
totalTrackCount
} = statistics ;
const extendedTitle = disambiguation ? ` ${ title } ( ${ disambiguation } ) ` : title ;
return (
< TableRow
onClick = { this . onPress }
@ -66,7 +69,7 @@ class SelectAlbumRow extends Component {
if ( name === 'title' ) {
return (
< TableRowCell key = { name } >
{ title}
{ ex tendedT itle}
< / T a b l e R o w C e l l >
) ;
}
@ -118,6 +121,7 @@ class SelectAlbumRow extends Component {
SelectAlbumRow . propTypes = {
id : PropTypes . number . isRequired ,
title : PropTypes . string . isRequired ,
disambiguation : PropTypes . string . isRequired ,
albumType : PropTypes . string . isRequired ,
releaseDate : PropTypes . string . isRequired ,
onAlbumSelect : PropTypes . func . isRequired ,
@ -185,7 +185,10 @@ class InteractiveImportRow extends Component {
} = this . state ;
const artistName = artist ? artist . artistName : '' ;
const albumTitle = album ? album . title : '' ;
let albumTitle = '' ;
if ( album ) {
albumTitle = album . disambiguation ? ` ${ album . title } ( ${ album . disambiguation } ) ` : album . title ;
}
const trackNumbers = tracks . map ( ( track ) => ` ${ track . mediumNumber } x ${ track . trackNumber } ` )
. join ( ', ' ) ;