Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/0b4e4a90bc1cc083144faaa89ed5a2563481d757
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
2 deletions
@ -34,6 +34,10 @@ const mapDispatchToProps = {
class AlbumDetailsPageConnector extends Component {
constructor ( props ) {
super ( props ) ;
this . state = { hasMounted : false } ;
}
//
// Lifecycle
@ -50,6 +54,7 @@ class AlbumDetailsPageConnector extends Component {
populate = ( ) => {
const foreignAlbumId = this . props . foreignAlbumId ;
this . setState ( { hasMounted : true } ) ;
this . props . fetchAlbums ( { foreignAlbumId } ) ;
}
@ -75,7 +80,7 @@ class AlbumDetailsPageConnector extends Component {
) ;
}
if ( isAlbumsFetching ) {
if ( isAlbumsFetching || ! this . state . hasMounted ) {
return (
< LoadingIndicator / >
) ;
@ -87,7 +92,7 @@ class AlbumDetailsPageConnector extends Component {
) ;
}
if ( ! isAlbumsFetching && isAlbumsPopulated ) {
if ( ! isAlbumsFetching && isAlbumsPopulated && this . state . hasMounted ) {
return (
< AlbumDetailsConnector
foreignAlbumId = { foreignAlbumId }