mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-14 04:12:28 +00:00
beatport_pro_importer: set release artist to 'Various Artists' when > 4
Suggested by CatQuest: http://chatlogs.musicbrainz.org/musicbrainz/2015/2015-06/2015-06-12.html#T21-06-03-216220
This commit is contained in:
parent
fe64395c72
commit
3572fe2fc9
1 changed files with 3 additions and 0 deletions
|
@ -105,6 +105,9 @@ function retrieveReleaseInfo(release_url) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (unique_artists.length > 4) {
|
||||||
|
unique_artists = [ 'Various Artists' ];
|
||||||
|
}
|
||||||
release.artist_credit = MBReleaseImportHelper.makeArtistCredits(unique_artists);
|
release.artist_credit = MBReleaseImportHelper.makeArtistCredits(unique_artists);
|
||||||
release.discs.push( {
|
release.discs.push( {
|
||||||
'tracks': tracks,
|
'tracks': tracks,
|
||||||
|
|
Loading…
Reference in a new issue