Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/d89d9e67c2a3df1cecea6f7f5d29661c7172d6ae
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
16 additions and
15 deletions
@ -68,9 +68,11 @@ define(
var key = this . state . sortKey ;
var order = this . state . order ;
if ( this .sorters && this . sorters [key ] && this . mode === 'client' ) {
if ( this [key ] && this . mode === 'client' ) {
var sortValue = this [ key ] ;
this . setSorting ( key , order , { sortValue : sortValue } ) ;
var comparator = this . _makeComparator ( key , order , sortValue ) ;
this . fullCollection . comparator = comparator ;
this . fullCollection . sort ( ) ;
@ -75,7 +75,7 @@ define(
name : 'nextAiring' ,
label : 'Next Airing' ,
cell : RelativeDateCell ,
sortValue : SeriesCollection . sorters. nextAiring
sortValue : SeriesCollection . nextAiring
} ,
{
name : 'percentOfEpisodes' ,
@ -152,7 +152,7 @@ define(
{
title : 'Next Airing' ,
name : 'nextAiring' ,
sortValue : SeriesCollection . sorters. nextAiring
sortValue : SeriesCollection . nextAiring
} ,
{
title : 'Episodes' ,
@ -20,18 +20,6 @@ define(
pageSize : 1000
} ,
sorters : {
nextAiring : function ( model ) {
var nextAiring = model . get ( 'nextAiring' ) ;
if ( ! nextAiring ) {
return Number . MAX _VALUE ;
}
return Moment ( nextAiring ) . unix ( ) ;
}
} ,
mode : 'client' ,
save : function ( ) {
@ -57,6 +45,17 @@ define(
} ) ;
return proxy . save ( ) ;
} ,
//Sorters
nextAiring : function ( model , attr ) {
var nextAiring = model . get ( attr ) ;
if ( ! nextAiring ) {
return Number . MAX _VALUE ;
}
return Moment ( nextAiring ) . unix ( ) ;
}
} ) ;