mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 20:02:27 +00:00
Use MBImport.specialArtist()
This commit is contained in:
parent
8e1fcea4f7
commit
e9baa959b7
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ var BandcampImport = {
|
||||||
// Release artist credit
|
// Release artist credit
|
||||||
if (bandcampAlbumData.artist.match(/^various(?: artists)?$/i)
|
if (bandcampAlbumData.artist.match(/^various(?: artists)?$/i)
|
||||||
&& various_artists) {
|
&& various_artists) {
|
||||||
release.artist_credit = MBImport.makeArtistCredits(['Various Artists']);
|
release.artist_credit = [ MBImport.specialArtist('various_artists') ];
|
||||||
} else {
|
} else {
|
||||||
release.artist_credit = MBImport.makeArtistCredits([bandcampAlbumData.artist]);
|
release.artist_credit = MBImport.makeArtistCredits([bandcampAlbumData.artist]);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue