Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/ccb206aed12f2125a20a6dbda6c7b792db4afc02
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
1 deletions
@ -16,6 +16,7 @@ function createCleanMovieSelector() {
title ,
titleSlug ,
sortTitle ,
year ,
images ,
alternateTitles = [ ] ,
tags = [ ]
@ -25,6 +26,7 @@ function createCleanMovieSelector() {
title ,
titleSlug ,
sortTitle ,
year ,
images ,
alternateTitles ,
firstCharacter : title . charAt ( 0 ) . toLowerCase ( ) ,
@ -9,6 +9,7 @@ function MovieSearchResult(props) {
const {
match ,
title ,
year ,
images ,
alternateTitles ,
tags
@ -35,7 +36,7 @@ function MovieSearchResult(props) {
< div className = { styles . titles } >
< div className = { styles . title } >
{ title }
{ title } { year > 0 ? ` ( ${ year } ) ` : '' }
< / d i v >
{
@ -65,6 +66,7 @@ function MovieSearchResult(props) {
MovieSearchResult . propTypes = {
title : PropTypes . string . isRequired ,
year : PropTypes . number . isRequired ,
images : PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
alternateTitles : PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
tags : PropTypes . arrayOf ( PropTypes . object ) . isRequired ,