mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2025-03-04 14:27:14 +00:00
mbimport.js: Add support for disambiguation comment
This commit is contained in:
parent
4d133aa7be
commit
abc8c4ba36
1 changed files with 4 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
|||
* day,
|
||||
* labels = [ { name, mbid, catno }, ... ],
|
||||
* barcode,
|
||||
* comment,
|
||||
* urls = [ {url, link_type }, ... ],
|
||||
* discs = [
|
||||
* {
|
||||
|
@ -183,6 +184,9 @@ var MBImport = (function() {
|
|||
// Barcode
|
||||
appendParameter(parameters, 'barcode', release.barcode);
|
||||
|
||||
// Disambiguation comment
|
||||
appendParameter(parameters, 'comment', release.comment);
|
||||
|
||||
// Label + catnos
|
||||
for (var i = 0; i < release.labels.length; i++) {
|
||||
let label = release.labels[i];
|
||||
|
|
Loading…
Add table
Reference in a new issue