Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/e7052aebe40d6b7d39122c83354b86914d97e563?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
5 deletions
@ -31,7 +31,7 @@ define(
var hasAired = Moment ( this . model . get ( 'airDateUtc' ) ) . isBefore ( Moment ( ) ) ;
var hasFile = this . model . get ( 'hasFile' ) ;
if ( hasFile ) {
if ( hasFile && reqres . hasHandler ( reqres . Requests . GetEpisodeFileById ) ) {
var episodeFile = reqres . request ( reqres . Requests . GetEpisodeFileById , this . model . get ( 'episodeFileId' ) ) ;
this . listenTo ( episodeFile , 'change' , this . _refresh ) ;
@ -186,6 +186,10 @@ define(
this . episodeCollection = new EpisodeCollection ( { seriesId : this . model . id } ) . bindSignalR ( ) ;
this . episodeFileCollection = new EpisodeFileCollection ( { seriesId : this . model . id } ) . bindSignalR ( ) ;
reqres . setHandler ( reqres . Requests . GetEpisodeFileById , function ( episodeFileId ) {
return self . episodeFileCollection . get ( episodeFileId ) ;
} ) ;
$ . when ( this . episodeCollection . fetch ( ) , this . episodeFileCollection . fetch ( ) ) . done ( function ( ) {
var seasonCollectionView = new SeasonCollectionView ( {
collection : self . seasonCollection ,
@ -193,10 +197,6 @@ define(
series : self . model
} ) ;
reqres . setHandler ( reqres . Requests . GetEpisodeFileById , function ( episodeFileId ) {
return self . episodeFileCollection . get ( episodeFileId ) ;
} ) ;
self . seasons . show ( seasonCollectionView ) ;
} ) ;
} ,