mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 01:02:05 +00:00
Fixed: Footer doesn't show track or file count.
This commit is contained in:
parent
902036fbdb
commit
87e492fe51
1 changed files with 2 additions and 2 deletions
|
@ -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++;
|
||||
|
|
Loading…
Reference in a new issue