mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 11:52:27 +00:00
Set default values for packaging, language and script
Most of stuffs imported from Bandcamp is eng/latin, and packaging should be None for digital releases.
This commit is contained in:
parent
941638c6ec
commit
8868beeb5c
1 changed files with 3 additions and 0 deletions
|
@ -52,6 +52,9 @@ function retrieveReleaseInfo() {
|
|||
// FIXME: implement a mapping between bandcamp release types and MB ones
|
||||
release.type = bandcampAlbumData.current.type;
|
||||
release.status = 'official';
|
||||
release.packaging = 'none';
|
||||
release.language = 'eng';
|
||||
release.script = 'Latn';
|
||||
|
||||
// map Bandcamp single tracks to singles
|
||||
if(release.type == "track")
|
||||
|
|
Loading…
Reference in a new issue