mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-21 10:45:12 -04:00
Fixed: Sort by episode count takes number of episodes into account.
This commit is contained in:
1 parent
0ff5850a61
commit
5a4b49d46e
1 file changed
+12
-1
@@ -59,7 +59,8 @@ define(
|
||||
|
||||
sortMappings: {
|
||||
'title' : { sortKey: 'sortTitle' },
|
||||
'nextAiring' : { sortValue: function (model, attr) {
|
||||
'nextAiring' : {
|
||||
sortValue: function (model, attr) {
|
||||
var nextAiring = model.get(attr);
|
||||
|
||||
if (nextAiring) {
|
||||
@@ -74,6 +75,16 @@ define(
|
||||
|
||||
return Number.MAX_VALUE;
|
||||
}
|
||||
},
|
||||
|
||||
percentOfEpisodes: {
|
||||
sortValue: function (model, attr) {
|
||||
var percentOfEpisodes = model.get(attr);
|
||||
var episodeCount = model.get('episodeCount');
|
||||
|
||||
return percentOfEpisodes + episodeCount / 1000000;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in new issue
Block a user