diff --git a/index.html b/index.html index caa3103..cbd187f 100644 --- a/index.html +++ b/index.html @@ -45,8 +45,8 @@
  • Go to artist
  • Go to album
  • Copy link
  • -
  • Track Info
  • -
  • Open Original URL
  • +
  • Track info
  • +
  • Open original URL
  • Download
  • diff --git a/js/app.js b/js/app.js index 5437e8d..6fdfd35 100644 --- a/js/app.js +++ b/js/app.js @@ -1437,11 +1437,11 @@ document.addEventListener('DOMContentLoaded', async () => { if (track) { if (albumItem) { - let label = 'Album'; + let label = 'album'; const albumType = track.album?.type?.toUpperCase(); const trackCount = track.album?.numberOfTracks; - if (albumType === 'SINGLE' || trackCount === 1) label = 'Single'; + if (albumType === 'SINGLE' || trackCount === 1) label = 'single'; else if (albumType === 'EP') label = 'EP'; else if (trackCount && trackCount <= 6) label = 'EP';