« get me outta code hell

per-track trackartlessness - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/upd8.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2019-11-13 17:31:07 -0400
committerFlorrie <towerofnix@gmail.com>2019-11-13 17:31:47 -0400
commit85495500e80b84e562a3239d13a110f408989917 (patch)
tree821d432b9b86a8663bd9dbe91dc50c66d7d50785 /upd8.js
parent0e23ee4b4d885cd78a71af80db7692d42353298f (diff)
per-track trackartlessness
Diffstat (limited to 'upd8.js')
-rw-r--r--upd8.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/upd8.js b/upd8.js
index 7a2887b..f595f3f 100644
--- a/upd8.js
+++ b/upd8.js
@@ -221,7 +221,7 @@ async function processAlbumDataFile(file) {
     const albumName = getBasicField(albumSection, 'Album');
     const albumArtists = getListField(albumSection, 'Artists') || getListField(albumSection, 'Artist');
     const albumDate = getBasicField(albumSection, 'Date');
-    const noTrackArt = (getBasicField(albumSection, 'Track Art') === 'none');
+    const albumNoTrackArt = (getBasicField(albumSection, 'Track Art') === 'none');
     let albumDirectory = getBasicField(albumSection, 'Directory');
 
     // I don't like these varia8le names. I'm sorry. -- I only really use the
@@ -263,7 +263,6 @@ async function processAlbumDataFile(file) {
         date: dateValue,
         artists: albumArtists,
         directory: albumDirectory,
-        noTrackArt,
         theme: {
             fg: albumColorFG,
             bg: albumColorBG,
@@ -282,6 +281,7 @@ async function processAlbumDataFile(file) {
 
         const trackName = getBasicField(section, 'Track');
         const originalDate = getBasicField(section, 'Original Date');
+        const noTrackArt = (getBasicField(section, 'Track Art') === 'none') || albumNoTrackArt;
         let trackArtists = getListField(section, 'Artists') || getListField(section, 'Artist');
         let trackContributors = getListField(section, 'Contributors') || [];
         let trackDirectory = getBasicField(section, 'Directory');
@@ -346,6 +346,7 @@ async function processAlbumDataFile(file) {
             artists: trackArtists,
             contributors: trackContributors,
             date,
+            noTrackArt,
             directory: trackDirectory,
             urls: trackURLs,
             // 8ack-reference the al8um o8ject! This is very useful for when
@@ -644,7 +645,7 @@ function getAlbumCover(album) {
 function getTrackCover(track) {
     // Some al8ums don't have any track art at all, and in those, every track
     // just inherits the al8um's own cover art.
-    if (track.album.noTrackArt) {
+    if (track.noTrackArt) {
         return getAlbumCover(track.album);
     } else {
         return `${ALBUM_DIRECTORY}/${track.album.directory}/${track.directory}.jpg`;