Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/f66a6eea6c658a4b80779a1fc973b9833ac2845c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
2 deletions
@ -8,6 +8,7 @@ import LoadingIndicator from 'Components/Loading/LoadingIndicator';
import PageContent from 'Components/Page/PageContent' ;
import PageContentBody from 'Components/Page/PageContentBody' ;
import { icons } from 'Helpers/Props' ;
import getErrorMessage from 'Utilities/Object/getErrorMessage' ;
import AddNewAlbumSearchResultConnector from './Album/AddNewAlbumSearchResultConnector' ;
import AddNewArtistSearchResultConnector from './Artist/AddNewArtistSearchResultConnector' ;
import styles from './AddNewItem.css' ;
@ -122,8 +123,13 @@ class AddNewItem extends Component {
}
{
! isFetching && ! ! error &&
< div > Failed to load search results , please try again . < / d i v >
! isFetching && ! ! error ?
< div className = { styles . message } >
< div className = { styles . helpText } >
Failed to load search results , please try again .
< / d i v >
< div > { getErrorMessage ( error ) } < / d i v >
< / d i v > : n u l l
}
{