Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/b001ecd698076106a18d8f51ca5dc5c72f9df3af
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
12 deletions
@ -25,12 +25,7 @@ const defaultFontSize = parseInt(fonts.defaultFontSize);
const lineHeight = parseFloat ( fonts . lineHeight ) ;
function getFanartUrl ( images ) {
const fanartImage = images . find ( ( x ) => x . coverType === 'fanart' ) ;
if ( fanartImage ) {
// Remove protocol
return fanartImage . url . replace ( /^https?:/ , '' ) ;
}
return images . find ( ( x ) => x . coverType === 'fanart' ) ? . url ;
}
class AuthorDetailsHeader extends Component {
@ -21,12 +21,7 @@ const defaultFontSize = parseInt(fonts.defaultFontSize);
const lineHeight = parseFloat ( fonts . lineHeight ) ;
function getFanartUrl ( images ) {
const fanartImage = images . find ( ( x ) => x . coverType === 'fanart' ) ;
if ( fanartImage ) {
// Remove protocol
return fanartImage . url . replace ( /^https?:/ , '' ) ;
}
return images . find ( ( x ) => x . coverType === 'fanart' ) ? . url ;
}
class BookDetailsHeader extends Component {