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