Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/c3a6e0104020b80f9598eeea183ae1dbede8b63e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
4 deletions
@ -38,7 +38,10 @@ class PathInputConnector extends Component {
// Listeners
onFetchPaths = ( path ) => {
this . props . fetchPaths ( { path } ) ;
this . props . fetchPaths ( {
path ,
includeFiles : this . props . includeFiles
} ) ;
}
onClearPaths = ( ) => {
@ -60,6 +63,7 @@ class PathInputConnector extends Component {
}
PathInputConnector . propTypes = {
includeFiles : PropTypes . bool . isRequired ,
fetchPaths : PropTypes . func . isRequired ,
clearPaths : PropTypes . func . isRequired
} ;
@ -20,6 +20,8 @@ function getType(type) {
return inputTypes . NUMBER ;
case 'path' :
return inputTypes . PATH ;
case 'filepath' :
return inputTypes . PATH ;
case 'select' :
return inputTypes . SELECT ;
case 'tag' :
@ -84,7 +86,7 @@ function ProviderFieldFormGroup(props) {
errors = { errors }
warnings = { warnings }
pending = { pending }
hasFileBrowser= { false }
includeFiles= { type === 'filepath' ? true : undefined }
onChange = { onChange }
{ ... otherProps }
/ >
@ -46,14 +46,16 @@ export const actionHandlers = handleThunks({
const {
path ,
allowFoldersWithoutTrailingSlashes = false
allowFoldersWithoutTrailingSlashes = false ,
includeFiles = false
} = payload ;
const promise = createAjaxRequest ( {
url : '/filesystem' ,
data : {
path ,
allowFoldersWithoutTrailingSlashes
allowFoldersWithoutTrailingSlashes ,
includeFiles
}
} ) . request ;