Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/ba92586b8b5feb7ebda6fca205efd5d520251d35
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -35,7 +35,7 @@ class DeleteBookModalContentConnector extends Component {
this . props . onModalClose ( true ) ;
this . props . push ( ` ${ window . Readarr . urlBase } /author/ ${ this . props . title Slug} ` ) ;
this . props . push ( ` ${ window . Readarr . urlBase } /author/ ${ this . props . author Slug} ` ) ;
}
//
@ -53,7 +53,7 @@ class DeleteBookModalContentConnector extends Component {
DeleteBookModalContentConnector . propTypes = {
bookId : PropTypes . number . isRequired ,
title Slug: PropTypes . string . isRequired ,
author Slug: PropTypes . string . isRequired ,
push : PropTypes . func . isRequired ,
onModalClose : PropTypes . func . isRequired ,
deleteBook : PropTypes . func . isRequired
@ -496,7 +496,7 @@ class BookDetails extends Component {
< DeleteBookModal
isOpen = { isDeleteBookModalOpen }
bookId = { id }
title Slug= { author . titleSlug }
author Slug= { author . titleSlug }
onModalClose = { this . onDeleteBookModalClose }
/ >