mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-09-02 21:03:09 +03:00
fix(transformers): Add missing parts parsing
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user