diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index a14ecc6158..02a348defe 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -283,6 +283,12 @@ } else if (options.context == "music") { + if (item.AlbumCount) { + + childText = item.AlbumCount == 1 ? "1 Album" : item.AlbumCount + " Albums"; + + counts.push(childText); + } if (item.SongCount) { childText = item.SongCount == 1 ? "1 Song" : item.SongCount + " Songs";