Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/ea43d78ad156f0d3c6301f6d667e8a723c998845
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
13 additions and
3 deletions
@ -7,8 +7,17 @@ define(
return Marionette . ItemView . extend ( {
template : 'Series/Details/InfoViewTemplate' ,
initialize : function ( ) {
initialize : function ( options ) {
this . episodeFileCollection = options . episodeFileCollection ;
this . listenTo ( this . model , 'change' , this . render ) ;
this . listenTo ( this . episodeFileCollection , 'sync' , this . render ) ;
} ,
templateHelpers : function ( ) {
return {
fileCount : this . episodeFileCollection . length
} ;
}
} ) ;
} ) ;
@ -5,7 +5,7 @@
<span class="label label-info"> {{ runtime }} minutes</span>
<span class="label label-info"> {{ path }} </span>
<span class="label label-info"> {{ Bytes sizeOnDisk }} </span>
<span class="label label-info"> {{ episodeF ileCount}} files</span>
<span class="label label-info"> {{ f ileCount}} files</span>
{{ # if _ eq status compare = "continuing" }}
<span class="label label-info">Continuing</span>
{{ else }}
@ -211,7 +211,7 @@ define(
} ,
_showInfo : function ( ) {
this . info . show ( new InfoView ( { model : this . model } ) ) ;
this . info . show ( new InfoView ( { model : this . model , episodeFileCollection : this . episodeFileCollection } ) ) ;
} ,
_commandComplete : function ( options ) {
@ -12,6 +12,7 @@ define(
initialize : function ( options ) {
this . seriesId = options . seriesId ;
this . models = [ ] ;
} ,
fetch : function ( options ) {