Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/1b7f52e013b645b6eed79a54fc956bb11bcb1d23
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
27 additions and
0 deletions
@ -95,6 +95,27 @@ class RootFolderSelectInputConnector extends Component {
}
}
componentDidUpdate ( prevProps ) {
const {
name ,
value ,
values ,
onChange
} = this . props ;
if ( prevProps . values === values ) {
return ;
}
if ( ! value && values . length && values . some ( ( v ) => ! ! v . key && v . key !== ADD _NEW _KEY ) ) {
const defaultValue = values [ 0 ] ;
if ( defaultValue . key !== ADD _NEW _KEY ) {
onChange ( { name , value : defaultValue . key } ) ;
}
}
}
//
// Listeners
@ -31,6 +31,12 @@ namespace Radarr.Api.V3.Movies
}
var rootFolderPath = context . PropertyValue . ToString ( ) ;
if ( rootFolderPath . IsNullOrWhiteSpace ( ) )
{
return true ;
}
var rootFolder = new DirectoryInfo ( rootFolderPath ) . Name ;
var movie = movieResource . ToModel ( ) ;
var movieFolder = _fileNameBuilder . GetMovieFolder ( movie ) ;