Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/4fc1ee0afff180c27fb655ee0c9dd501e7767a94?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
5 deletions
@ -10,7 +10,7 @@ function parseValue(props, value) {
} = props ;
if ( value == null || value === '' ) {
return min ;
return null ;
}
let newValue = isFloat ? parseFloat ( value ) : parseInt ( value ) ;
@ -41,7 +41,7 @@ function ManageDownloadClientsEditModalContent(
const [ removeCompletedDownloads , setRemoveCompletedDownloads ] =
useState ( NO_CHANGE ) ;
const [ removeFailedDownloads , setRemoveFailedDownloads ] = useState ( NO_CHANGE ) ;
const [ priority , setPriority ] = useState < string | number > ( NO_CHANGE ) ;
const [ priority , setPriority ] = useState < null | string | number > ( null ) ;
const save = useCallback ( ( ) = > {
let hasChanges = false ;
@ -62,7 +62,7 @@ function ManageDownloadClientsEditModalContent(
payload . removeFailedDownloads = removeFailedDownloads === 'enabled' ;
}
if ( priority !== NO_CHANGE ) {
if ( priority !== null ) {
hasChanges = true ;
payload . priority = priority as number ;
}
@ -41,7 +41,7 @@ function ManageIndexersEditModalContent(
const [ enableAutomaticSearch , setEnableAutomaticSearch ] = useState ( NO_CHANGE ) ;
const [ enableInteractiveSearch , setEnableInteractiveSearch ] =
useState ( NO_CHANGE ) ;
const [ priority , setPriority ] = useState < string | number > ( NO_CHANGE ) ;
const [ priority , setPriority ] = useState < null | string | number > ( null ) ;
const save = useCallback ( ( ) = > {
let hasChanges = false ;
@ -62,7 +62,7 @@ function ManageIndexersEditModalContent(
payload . enableInteractiveSearch = enableInteractiveSearch === 'enabled' ;
}
if ( priority !== NO_CHANGE ) {
if ( priority !== null ) {
hasChanges = true ;
payload . priority = priority as number ;
}