mirror of
https://github.com/Readarr/Readarr
synced 2026-03-20 19:43:34 +01:00
Fixed: Sorting by track count
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
255c19bb83
commit
06d3e47232
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ export const defaultState = {
|
|||
bookCount: function(item) {
|
||||
const { statistics = {} } = item;
|
||||
|
||||
return statistics.bookCount;
|
||||
return statistics.bookCount || 0;
|
||||
},
|
||||
|
||||
sizeOnDisk: function(item) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue