diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-04-16 12:26:45 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-04-16 12:26:45 -0300 |
commit | 743c70043fb14c6b0a6a434803de0e6562f834e0 (patch) | |
tree | 8b01093dcc449af6baa3c9d41d25164f138c4506 /src/content/dependencies | |
parent | dedb59d3d10bbebd27b0f76895c19b9000e52203 (diff) |
content: listTracksWithLyrics: fix lyrics detection
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/listTracksWithLyrics.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/dependencies/listTracksWithLyrics.js b/src/content/dependencies/listTracksWithLyrics.js index a13a76f0..e6ab9d7d 100644 --- a/src/content/dependencies/listTracksWithLyrics.js +++ b/src/content/dependencies/listTracksWithLyrics.js @@ -2,7 +2,7 @@ export default { contentDependencies: ['listTracksWithExtra'], relations: (relation, spec) => - ({page: relation('listTracksWithExtra', spec, 'lyrics', 'truthy')}), + ({page: relation('listTracksWithExtra', spec, 'lyrics', 'array')}), generate: (relations) => relations.page, |