Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/b1fa3062237aadea6ddeb4c4567f2a319a469409?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
12 additions and
5 deletions
@ -36,9 +36,8 @@ define(
initialize : function ( options ) {
this . templateHelpers . hideSeriesLink = options . hideSeriesLink ;
var series = SeriesCollection . find ( { id : this . model . get ( 'seriesId' ) } ) ;
this . templateHelpers . series = series . toJSON ( ) ;
var test = 1 ;
this . series = SeriesCollection . find ( { id : this . model . get ( 'seriesId' ) } ) ;
this . templateHelpers . series = this . series . toJSON ( ) ;
} ,
onShow : function ( ) {
@ -53,7 +52,7 @@ define(
}
this . ui . summary . tab ( 'show' ) ;
this . summary . show ( new SummaryLayout ( { model : this . model }) ) ;
this . summary . show ( new SummaryLayout ( { model : this . model , series : this . series }) ) ;
} ,
_showActivity : function ( e ) {
@ -3,7 +3,6 @@
< button type = "button" class = "close" data-dismiss = "modal" aria-hidden = "true" > × < / button >
< h3 >
{{debug}}
< i class = "icon-bookmark x-episode-monitored" title = "Toggle monitored status" / >
{{#if episodeTitle}}
{{title}} - {{EpisodeNumber}} - {{episodeTitle}}
@ -39,6 +39,14 @@ define(
}
] ,
templateHelpers : { } ,
initialize : function ( options ) {
if ( ! this . model . series ) {
this . templateHelpers . series = options . series . toJSON ( ) ;
}
} ,
onShow : function ( ) {
if ( this . model . get ( 'episodeFile' ) ) {
this . activity . show ( new Backgrid . Grid ( {
@ -1,4 +1,5 @@
< div class = "episode-info" >
{{debug}}
{{#with series}}
{{qualityProfile qualityProfileId}}
< span class = "label label-info" > {{network}}< / span >