mirror of
https://github.com/Radarr/Radarr
synced 2025-01-19 22:21:08 +00:00
Fixed: Sort by episode count takes number of episodes into account.
This commit is contained in:
parent
0ff5850a61
commit
5a4b49d46e
1 changed files with 12 additions and 1 deletions
|
@ -59,7 +59,8 @@ define(
|
||||||
|
|
||||||
sortMappings: {
|
sortMappings: {
|
||||||
'title' : { sortKey: 'sortTitle' },
|
'title' : { sortKey: 'sortTitle' },
|
||||||
'nextAiring' : { sortValue: function (model, attr) {
|
'nextAiring' : {
|
||||||
|
sortValue: function (model, attr) {
|
||||||
var nextAiring = model.get(attr);
|
var nextAiring = model.get(attr);
|
||||||
|
|
||||||
if (nextAiring) {
|
if (nextAiring) {
|
||||||
|
@ -74,6 +75,16 @@ define(
|
||||||
|
|
||||||
return Number.MAX_VALUE;
|
return Number.MAX_VALUE;
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
percentOfEpisodes: {
|
||||||
|
sortValue: function (model, attr) {
|
||||||
|
var percentOfEpisodes = model.get(attr);
|
||||||
|
var episodeCount = model.get('episodeCount');
|
||||||
|
|
||||||
|
return percentOfEpisodes + episodeCount / 1000000;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue