Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/9a240727edfcbefada26239db150b1bc43a265e3?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
3 deletions
@ -5,7 +5,7 @@ function createArtistLanguageProfileSelector() {
return createSelector (
return createSelector (
( state ) => state . settings . languageProfiles . items ,
( state ) => state . settings . languageProfiles . items ,
createArtistSelector ( ) ,
createArtistSelector ( ) ,
( languageProfiles , artist ) => {
( languageProfiles , artist = { } ) => {
return languageProfiles . find ( ( profile ) => {
return languageProfiles . find ( ( profile ) => {
return profile . id === artist . languageProfileId ;
return profile . id === artist . languageProfileId ;
} ) ;
} ) ;
@ -5,7 +5,7 @@ function createArtistMetadataProfileSelector() {
return createSelector (
return createSelector (
( state ) => state . settings . metadataProfiles . items ,
( state ) => state . settings . metadataProfiles . items ,
createArtistSelector ( ) ,
createArtistSelector ( ) ,
( metadataProfiles , artist ) => {
( metadataProfiles , artist = { } ) => {
return metadataProfiles . find ( ( profile ) => {
return metadataProfiles . find ( ( profile ) => {
return profile . id === artist . metadataProfileId ;
return profile . id === artist . metadataProfileId ;
} ) ;
} ) ;
@ -5,7 +5,7 @@ function createArtistQualityProfileSelector() {
return createSelector (
return createSelector (
( state ) => state . settings . qualityProfiles . items ,
( state ) => state . settings . qualityProfiles . items ,
createArtistSelector ( ) ,
createArtistSelector ( ) ,
( qualityProfiles , artist ) => {
( qualityProfiles , artist = { } ) => {
return qualityProfiles . find ( ( profile ) => {
return qualityProfiles . find ( ( profile ) => {
return profile . id === artist . qualityProfileId ;
return profile . id === artist . qualityProfileId ;
} ) ;
} ) ;