Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/8256314ba854b31cd872437115b652742bde7a26
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
4 deletions
@ -88,7 +88,7 @@ class RemotePathMapping extends Component {
isOpen = { this . state . isDeleteRemotePathMappingModalOpen }
kind = { kinds . DANGER }
title = "Delete Delay Profile"
message = "Are you sure you want to delete this delay profile ?"
message = "Are you sure you want to delete this remote path mapping ?"
confirmLabel = "Delete"
onConfirm = { this . onConfirmDeleteRemotePathMapping }
onCancel = { this . onDeleteRemotePathMappingModalClose }
@ -185,7 +185,7 @@ class Naming extends Component {
buttons = { < FormInputButton onPress = { this . onArtistFolderNamingModalOpenClick } > ? < / F o r m I n p u t B u t t o n > }
onChange = { onInputChange }
{ ... settings . artistFolderFormat }
helpTexts = { [ ' Only used when adding a new artist ', ... artistFolderFormatHelpTexts ] }
helpTexts = { [ ' Used when adding a new artist or moving an artist via the artist editor ', ... artistFolderFormatHelpTexts ] }
errors = { [ ... artistFolderFormatErrors , ... settings . artistFolderFormat . errors ] }
/ >
< / F o r m G r o u p >
@ -73,8 +73,8 @@ class TrackFileEditorModalContent extends Component {
return selectedIds . reduce ( ( acc , id ) => {
const matchingItem = this . props . items . find ( ( item ) => item . id === id ) ;
if ( matchingItem && ! acc . includes ( matchingItem . trackFileI D ) ) {
acc . push ( matchingItem . trackFileI D ) ;
if ( matchingItem && ! acc . includes ( matchingItem . trackFileI d ) ) {
acc . push ( matchingItem . trackFileI d ) ;
}
return acc ;