Fixed: Sorting by episode count

Fixes #3531
pull/3430/head
Mark McDowall 5 years ago
parent e51f1b5e16
commit 2c0a0175ef

@ -227,7 +227,7 @@ export const defaultState = {
episodeCount: function(item) {
const { statistics = {} } = item;
return statistics.episodeCount;
return statistics.totalEpisodeCount || 0;
},
seasonCount: function(item) {

Loading…
Cancel
Save