Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/a1506fc92b20d6ee3db9a35b4f846d4b09da0bb9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
10 additions and
9 deletions
@ -119,6 +119,7 @@
margin : 5px 10px 5px 0 ;
}
. releaseDate ,
. sizeOnDisk ,
. qualityProfileName ,
. links ,
@ -19,6 +19,7 @@ interface CssExports {
'monitorToggleButton' : string ;
'overview' : string ;
'qualityProfileName' : string ;
'releaseDate' : string ;
'sizeOnDisk' : string ;
'tags' : string ;
'title' : string ;
@ -415,6 +415,7 @@ class AlbumDetails extends Component {
< Label
className = { styles . detailsLabel }
title = { translate ( 'ReleaseDate' ) }
size = { sizes . LARGE }
>
< Icon
@ -422,10 +423,8 @@ class AlbumDetails extends Component {
size = { 17 }
/ >
< span className = { styles . sizeOnDisk } >
{
moment ( releaseDate ) . format ( shortDateFormat )
}
< span className = { styles . releaseDate } >
{ moment ( releaseDate ) . format ( shortDateFormat ) }
< / s p a n >
< / L a b e l >
@ -466,7 +465,7 @@ class AlbumDetails extends Component {
/ >
< span className = { styles . qualityProfileName } >
{ monitored ? 'Monitored' : 'Unmonitored' }
{ monitored ? translate ( 'Monitored' ) : translate ( 'Unmonitored' ) }
< / s p a n >
< / L a b e l >
@ -500,7 +499,7 @@ class AlbumDetails extends Component {
/ >
< span className = { styles . links } >
Links
{ translate( ' Links') }
< / s p a n >
< / L a b e l >
}
@ -242,7 +242,7 @@ class ArtistDetails extends Component {
} = this . state ;
const continuing = status === 'continuing' ;
const endedString = artistType === 'Person' ? 'Deceased' : 'Inactive' ;
const endedString = artistType === 'Person' ? translate ( 'Deceased' ) : translate ( 'Inactive' ) ;
let trackFilesCountMessage = translate ( 'TrackFilesCountMessage' ) ;
@ -556,7 +556,7 @@ class ArtistDetails extends Component {
/ >
< span className = { styles . links } >
Links
{ translate( ' Links') }
< / s p a n >
< / L a b e l >
}
@ -89,7 +89,7 @@ class AddNewArtistSearchResult extends Component {
const linkProps = isExistingArtist ? { to : ` /artist/ ${ foreignArtistId } ` } : { onPress : this . onPress } ;
const endedString = artistType === 'Person' ? 'Deceased' : 'Inactive' ;
const endedString = artistType === 'Person' ? translate ( 'Deceased' ) : translate ( 'Inactive' ) ;
const height = calculateHeight ( 230 , isSmallScreen ) ;