Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/8737cb0145e7a4ccbd2c1b6091f85f8ca76a8aac
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
14 additions and
4 deletions
@ -3,16 +3,27 @@
define (
[
'app' ,
'marionette'
] , function ( App , Marionette ) {
'marionette' ,
'moment'
] , function ( App , Marionette , Moment ) {
return Marionette . ItemView . extend ( {
template : 'Calendar/UpcomingItem Template',
template : 'Calendar/UpcomingItem View Template',
tagName : 'div' ,
events : {
'click .x-episode-title' : '_showEpisodeDetails'
} ,
initialize : function ( ) {
var start = this . model . get ( 'airDateUtc' ) ;
var runtime = this . model . get ( 'series' ) . runtime ;
var end = Moment ( start ) . add ( 'minutes' , runtime ) ;
this . model . set ( {
end : end
} )
} ,
_showEpisodeDetails : function ( ) {
App . vent . trigger ( App . Commands . ShowEpisodeDetails , { episode : this . model } ) ;
}
@ -1,5 +1,4 @@
< div class = "episode-info" >
{{debug}}
{{#with series}}
{{qualityProfile qualityProfileId}}
< span class = "label label-info" > {{network}}< / span >