Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/f39824cb9cdb9e7ff19347efb408f8b7d1e69e8a You should set ROOT_URL correctly, otherwise the web may not work correctly.

Add changes related to lint & importing movies

Fixes 
pull/2/head
nitsua 5 years ago committed by Qstick
parent ef80314219
commit f39824cb9c

@ -80,6 +80,7 @@ class ImportMovie extends Component {
path,
rootFoldersFetching,
rootFoldersError,
rootFoldersPopulated,
unmappedFolders
} = this.props;
@ -109,6 +110,7 @@ class ImportMovie extends Component {
{
!rootFoldersError &&
!rootFoldersFetching &&
rootFoldersPopulated &&
!unmappedFolders.length ?
<div>
All movies in {path} have been imported
@ -119,6 +121,7 @@ class ImportMovie extends Component {
{
!rootFoldersError &&
!rootFoldersFetching &&
rootFoldersPopulated &&
!!unmappedFolders.length &&
scroller ?
<ImportMovieTableConnector

Loading…
Cancel
Save