Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/7f1497974febf4e0469ecfdb2d31da255961650e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
14 additions and
7 deletions
@ -51,10 +51,6 @@ function QueueStatusCell(props) {
let iconKind = kinds . DEFAULT ;
let title = 'Downloading' ;
if ( hasWarning ) {
iconKind = kinds . WARNING ;
}
if ( status === 'paused' ) {
iconName = icons . PAUSED ;
title = 'Paused' ;
@ -71,17 +67,24 @@ function QueueStatusCell(props) {
if ( trackedDownloadState === 'importPending' ) {
title += ' - Waiting to Import' ;
iconKind = kinds . PURPLE ;
}
if ( trackedDownloadState === 'importing' ) {
title += ' - Importing' ;
iconKind = kinds . PURPLE ;
}
if ( trackedDownloadState === 'failedPending' ) {
title += ' - Waiting to Process' ;
iconKind = kinds . DANGER ;
}
}
if ( hasWarning ) {
iconKind = kinds . WARNING ;
}
if ( status === 'delay' ) {
iconName = icons . PENDING ;
title = 'Pending' ;
@ -19,7 +19,7 @@ function TimeleftCell(props) {
timeFormat
} = props ;
if ( status === ' D elay') {
if ( status === ' d elay') {
const date = getRelativeDate ( estimatedCompletionTime , shortDateFormat , showRelativeDates ) ;
const time = formatTime ( estimatedCompletionTime , timeFormat , { includeMinuteZero : true } ) ;
@ -33,7 +33,7 @@ function TimeleftCell(props) {
) ;
}
if ( status === ' D ownloadClientUnavailable') {
if ( status === ' d ownloadClientUnavailable') {
const date = getRelativeDate ( estimatedCompletionTime , shortDateFormat , showRelativeDates ) ;
const time = formatTime ( estimatedCompletionTime , timeFormat , { includeMinuteZero : true } ) ;
@ -47,7 +47,7 @@ function TimeleftCell(props) {
) ;
}
if ( ! timeleft ) {
if ( ! timeleft || status === 'completed' || status === 'failed' ) {
return (
< TableRowCell className = { styles . timeleft } >
-
@ -25,3 +25,7 @@
. warning {
color : $ warningColor ;
}
. purple {
color : $ purple ;
}