Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/c9a0aebbfb0ba5e18955920516bc5561e12898d1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
2 deletions
@ -6,11 +6,12 @@ define(
'Episode/Search/ButtonsView' ,
'Episode/Search/ManualLayout' ,
'Release/Collection' ,
'Series/SeriesCollection' ,
'Shared/LoadingView' ,
'Shared/Messenger' ,
'Commands/CommandController' ,
'Shared/FormatHelpers'
] , function ( App , Marionette , ButtonsView , ManualSearchLayout , ReleaseCollection , LoadingView, Messenger , CommandController , FormatHelpers ) {
] , function ( App , Marionette , ButtonsView , ManualSearchLayout , ReleaseCollection , SeriesCollection, LoadingView, Messenger , CommandController , FormatHelpers ) {
return Marionette . Layout . extend ( {
template : 'Episode/Search/LayoutTemplate' ,
@ -40,7 +41,8 @@ define(
CommandController . Execute ( 'episodeSearch' , { episodeId : this . model . get ( 'id' ) } ) ;
var seriesTitle = this . model . get ( 'series' ) . get ( 'title' ) ;
var series = SeriesCollection . get ( this . model . get ( 'seriesId' ) ) ;
var seriesTitle = series . get ( 'title' ) ;
var season = this . model . get ( 'seasonNumber' ) ;
var episode = this . model . get ( 'episodeNumber' ) ;
var message = seriesTitle + ' - ' + season + 'x' + FormatHelpers . pad ( episode , 2 ) ;