Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/fa19f45171d3f1d5355078d028b2e58cc4705bda
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
2 deletions
@ -202,6 +202,8 @@ class SignalRConnector extends Component {
if ( action === 'updated' ) {
this . props . dispatchUpdateItem ( { section , ... body . resource } ) ;
repopulatePage ( 'movieUpdated' ) ;
} else if ( action === 'deleted' ) {
this . props . dispatchRemoveItem ( { section , id : body . resource . id } ) ;
}
@ -227,7 +227,7 @@ class MovieDetailsConnector extends Component {
// Lifecycle
componentDidMount ( ) {
registerPagePopulator ( this . populate );
registerPagePopulator ( this . populate , [ 'movieUpdated' ] );
this . populate ( ) ;
}
@ -49,7 +49,7 @@ class CutoffUnmetConnector extends Component {
gotoCutoffUnmetFirstPage
} = this . props ;
registerPagePopulator ( this . repopulate , [ 'movie FileUpdated', 'movieFileDeleted' ] ) ;
registerPagePopulator ( this . repopulate , [ 'movie Updated', 'movie FileUpdated', 'movieFileDeleted' ] ) ;
if ( useCurrentPage ) {
fetchCutoffUnmet ( ) ;