Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/fbcf1b03c5663512ed3936ca3d6aa432aef26788
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
2 deletions
@ -7,6 +7,7 @@ import createSetSettingValueReducer from 'Store/Actions/Creators/Reducers/create
import { createThunk } from 'Store/thunks' ;
import getSectionState from 'Utilities/State/getSectionState' ;
import updateSectionState from 'Utilities/State/updateSectionState' ;
import translate from 'Utilities/String/translate' ;
//
// Variables
@ -87,7 +88,7 @@ export default {
const pendingChanges = { ... item , id : 0 } ;
delete pendingChanges . id ;
pendingChanges . name = ` ${ pendingChanges . name } - Copy ` ;
pendingChanges . name = translate ( 'DefaultNameCopiedProfile' , { name : pendingChanges . name } ) ;
newState . pendingChanges = pendingChanges ;
return updateSectionState ( state , section , newState ) ;
@ -210,7 +210,7 @@ export const reducers = createHandleActions({
// Set the name in pendingChanges
newState . pendingChanges = {
name : ` ${ item . name } - Copy `
name : translate ( 'DefaultNameCopiedProfile' , { name : item . name } )
} ;
return updateSectionState ( state , section , newState ) ;
@ -131,6 +131,7 @@
"Database" : "Database" ,
"Date" : "Date" ,
"Dates" : "Dates" ,
"DefaultNameCopiedProfile" : "{name} - Copy" ,
"Delete" : "Delete" ,
"DeleteAppProfile" : "Delete App Profile" ,
"DeleteAppProfileMessageText" : "Are you sure you want to delete the app profile '{name}'?" ,