Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/11c7446cbe743ab2f65c6d6f93409f16c37c5c01
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
3 deletions
@ -17,7 +17,8 @@ function IndexerOptions(props) {
error ,
settings ,
hasSettings ,
onInputChange
onInputChange ,
onWhitelistedSubtitleChange
} = props ;
return (
@ -135,7 +136,7 @@ function IndexerOptions(props) {
type = { inputTypes . TEXT _TAG }
name = "whitelistedHardcodedSubs"
helpText = { translate ( 'WhitelistedHardcodedSubsHelpText' ) }
onChange = { on Input Change}
onChange = { on WhitelistedSubtitle Change}
{ ... settings . whitelistedHardcodedSubs }
/ >
< / F o r m G r o u p >
@ -166,7 +167,8 @@ IndexerOptions.propTypes = {
error : PropTypes . object ,
settings : PropTypes . object . isRequired ,
hasSettings : PropTypes . bool . isRequired ,
onInputChange : PropTypes . func . isRequired
onInputChange : PropTypes . func . isRequired ,
onWhitelistedSubtitleChange : PropTypes . func . isRequired
} ;
export default IndexerOptions ;
@ -74,6 +74,10 @@ class IndexerOptionsConnector extends Component {
this . props . dispatchSetIndexerOptionsValue ( { name , value } ) ;
} ;
onWhitelistedSubtitleChange = ( { name , value } ) => {
this . props . dispatchSetIndexerOptionsValue ( { name , value : value . join ( ',' ) } ) ;
} ;
//
// Render
@ -81,6 +85,7 @@ class IndexerOptionsConnector extends Component {
return (
< IndexerOptions
onInputChange = { this . onInputChange }
onWhitelistedSubtitleChange = { this . onWhitelistedSubtitleChange }
{ ... this . props }
/ >
) ;