Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/92e9dc6ee1f33d8fc6361d00862778ab6711b032
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
13 additions and
2 deletions
@ -8,7 +8,7 @@ module.exports = TemplatedCell.extend({
"July" , "August" , "September" , "October" , "November" , "December"
] ;
this . $el . html ( " To be announced ") ;
this . $el . html ( " ") ;
if ( this . model . get ( "inCinemas" ) ) {
var cinemasDate = new Date ( this . model . get ( "inCinemas" ) ) ;
@ -100,7 +100,18 @@ var Collection = PageableCollection.extend({
return percentOfEpisodes + episodeCount / 1000000 ;
}
} ,
inCinemas : {
sortValue : function ( model , attr ) {
var monthNames = [ "January" , "February" , "March" , "April" , "May" , "June" ,
"July" , "August" , "September" , "October" , "November" , "December"
] ;
if ( model . get ( "inCinemas" ) ) {
return model . get ( "inCinemas" ) ;
}
return "2100-01-01" ;
}
} ,
path : {
sortValue : function ( model ) {
var path = model . get ( 'path' ) ;