fix(transformers): Add missing parts parsing

This commit is contained in:
FoxxMD
2025-12-05 19:25:38 +00:00
parent 5c2819a70c
commit ea4d9b3764
2 changed files with 2 additions and 2 deletions
@@ -255,7 +255,7 @@ export default class MusicbrainzTransformer extends AtomicPartsTransformer<Exter
type: 'musicbrainz'
}
for (const k of ['artists', 'title', 'album']) {
for (const k of ['artists', 'albumArtists', 'title', 'album', 'meta', 'duration']) {
if (!(k in stage)) {
stage[k] = true;
continue;
@@ -127,7 +127,7 @@ export default class NativeTransformer extends AtomicPartsTransformer<ExternalMe
type: 'native'
}
for (const k of ['artists', 'title', 'album']) {
for (const k of ['artists', 'albumArtists', 'title', 'album']) {
if (!(k in stage)) {
stage[k] = true;
continue;