Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/2cbe17151decc02f0be0165957277940bb81c6ec?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
18 additions and
9 deletions
@ -7,10 +7,16 @@ module.exports = TemplatedCell.extend({
var monthNames = [ "January" , "February" , "March" , "April" , "May" , "June" ,
"July" , "August" , "September" , "October" , "November" , "December"
] ;
this . $el . html ( "To be announced" ) ;
if ( this . model . get ( "inCinemas" ) ) {
var cinemasDate = new Date ( this . model . get ( "inCinemas" ) ) ;
var year = cinemasDate . getFullYear ( ) ;
var month = monthNames [ cinemasDate . getMonth ( ) ] ;
this . $el . html ( month + " " + year ) ; //Hack, but somehow handlebar helper does not work.
}
return this ;
}
} ) ;
@ -181,10 +181,13 @@ Handlebars.registerHelper('inCinemas', function() {
var year = d . getFullYear ( ) ;
return "Available: " + day + ". " + month + " " + year ;
}
if ( this . inCinemas ) {
var cinemasDate = new Date ( this . inCinemas ) ;
var year = cinemasDate . getFullYear ( ) ;
var month = monthNames [ cinemasDate . getMonth ( ) ] ;
return "In Cinemas: " + month + " " + year ;
}
return "To be announced" ;
} ) ;
Handlebars . registerHelper ( 'tvRageUrl' , function ( ) {