diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-21 14:14:19 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-21 14:14:19 -0300 |
commit | 37122b700c27435a8d8487f0d474a5c52f685e59 (patch) | |
tree | 920002fa293a8a65410a2c0151ca4188ec60212b /src/data/things/album.js | |
parent | 85e62b20170c566c5a22479f5dfaccc2817f4afe (diff) |
data, content: Track: "Referencing Sources"
Diffstat (limited to 'src/data/things/album.js')
-rw-r--r-- | src/data/things/album.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/data/things/album.js b/src/data/things/album.js index dc31bb10..b1aad9fc 100644 --- a/src/data/things/album.js +++ b/src/data/things/album.js @@ -696,6 +696,7 @@ export class Album extends Thing { const artworkData = []; const commentaryData = []; const creditingSourceData = []; + const referencingSourceData = []; const lyricsData = []; for (const {header: album, entries} of results) { @@ -745,6 +746,7 @@ export class Album extends Thing { artworkData.push(...entry.trackArtworks); commentaryData.push(...entry.commentary); creditingSourceData.push(...entry.creditingSources); + referencingSourceData.push(...entry.referencingSources); // TODO: As exposed, Track.lyrics tries to inherit from the main // release, which is impossible before the data's been linked. @@ -780,6 +782,7 @@ export class Album extends Thing { artworkData, commentaryData, creditingSourceData, + referencingSourceData, lyricsData, }; }, |