Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/4d6d477947057da8a0fbfa2b3a06dfde91b5a6de
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
5 additions and
9 deletions
@ -39,11 +39,6 @@ namespace NzbDrone.Api.History
pagingSpec . FilterExpression = h = > h . EpisodeId = = i ;
}
if ( pagingSpec . SortKey . Equals ( "series" , StringComparison . InvariantCultureIgnoreCase ) )
{
pagingSpec . SortKey = "series.title" ;
}
return ApplyToPage ( _historyService . Paged , pagingSpec ) ;
}
@ -45,7 +45,8 @@ define(
{
name : 'series' ,
label : 'Series' ,
cell : SeriesTitleCell
cell : SeriesTitleCell ,
sortValue : 'series.title'
} ,
{
name : 'episode' ,
@ -40,7 +40,7 @@ define(
var _storeState = function ( column , sortDirection ) {
var order = _convertDirectionToInt ( sortDirection ) ;
var sortKey = column . get( 'name' ) ;
var sortKey = column . has( 'sortValue' ) ? column . get ( 'sortValue' ) : column . get( 'name' ) ;
Config . setValue ( '{0}.sortKey' . format ( this . tableName ) , sortKey ) ;
Config . setValue ( '{0}.sortDirection' . format ( this . tableName ) , order ) ;
@ -47,7 +47,7 @@ define(
}
} ) ;
var m ixedIn = AsPersistedStateCollection . call ( Collection ) ;
var collection = new m ixedIn( SeriesData ) ;
var M ixedIn = AsPersistedStateCollection . call ( Collection ) ;
var collection = new M ixedIn( SeriesData ) ;
return collection ;
} ) ;