diff --git a/src/UI/Series/SeriesCollection.js b/src/UI/Series/SeriesCollection.js index 44faf3dc5..fa7e4422e 100644 --- a/src/UI/Series/SeriesCollection.js +++ b/src/UI/Series/SeriesCollection.js @@ -66,10 +66,11 @@ var Collection = PageableCollection.extend({ }, sortMappings : { - 'title' : { + title : { sortKey : 'sortTitle' }, - 'nextAiring' : { + + nextAiring : { sortValue : function(model, attr, order) { var nextAiring = model.get(attr); @@ -92,6 +93,14 @@ var Collection = PageableCollection.extend({ return percentOfEpisodes + episodeCount / 1000000; } + }, + + path : { + sortValue : function(model) { + var path = model.get('path'); + + return path.toLowerCase(); + } } } });