Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/56a34b5ea6a1ad401ee4cfe74e1acea54fc02ee5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
9 deletions
@ -85,7 +85,11 @@ define(
var statusLevel = 'primary' ;
if ( currentTime . isAfter ( start ) && currentTime . isBefore ( end ) ) {
if ( hasFile ) {
statusLevel = 'success' ;
}
else if ( currentTime . isAfter ( start ) && currentTime . isBefore ( end ) ) {
statusLevel = 'warning' ;
}
@ -93,10 +97,6 @@ define(
statusLevel = 'danger' ;
}
else if ( hasFile ) {
statusLevel = 'success' ;
}
var test = currentTime . startOf ( 'day' ) . format ( 'LLLL' ) ;
if ( end . isBefore ( currentTime . startOf ( 'day' ) ) ) {
@ -24,6 +24,10 @@ define(
var start = Moment ( this . airDateUtc ) ;
var end = Moment ( this . end ) ;
if ( hasFile ) {
return 'success' ;
}
if ( currentTime . isAfter ( start ) && currentTime . isBefore ( end ) ) {
return 'warning' ;
}
@ -32,10 +36,6 @@ define(
return 'danger' ;
}
if ( hasFile ) {
return 'success' ;
}
return 'primary' ;
} ) ;