mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Footer doesn't show track or file count.
This commit is contained in:
@@ -15,8 +15,8 @@ function ArtistIndexFooter({ artist }) {
|
||||
let totalFileSize = 0;
|
||||
|
||||
artist.forEach((s) => {
|
||||
tracks += s.trackCount || 0;
|
||||
trackFiles += s.trackFileCount || 0;
|
||||
tracks += s.statistics.trackCount || 0;
|
||||
trackFiles += s.statistics.trackFileCount || 0;
|
||||
|
||||
if (s.status === 'ended') {
|
||||
ended++;
|
||||
|
||||
Reference in New Issue
Block a user