Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/52dbcfe8529f6d725d6868875f46f71cd17fe4b6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
8 deletions
@ -45,12 +45,8 @@ class Queue extends Component {
} ;
}
shouldComponentUpdate ( nextProps ) {
if ( ! this . _shouldBlockRefresh ) {
return true ;
}
if ( hasDifferentItems ( this . props . items , nextProps . items ) ) {
shouldComponentUpdate ( ) {
if ( this . _shouldBlockRefresh ) {
return false ;
}
@ -123,14 +119,14 @@ class Queue extends Component {
}
onRemoveSelectedConfirmed = ( payload ) => {
this . _shouldBlockRefresh = false ;
this . props . onRemoveSelectedPress ( { ids : this . getSelectedIds ( ) , ... payload } ) ;
this . setState ( { isConfirmRemoveModalOpen : false } ) ;
this . _shouldBlockRefresh = false ;
}
onConfirmRemoveModalClose = ( ) => {
this . setState ( { isConfirmRemoveModalOpen : false } ) ;
this . _shouldBlockRefresh = false ;
this . setState ( { isConfirmRemoveModalOpen : false } ) ;
}
//