Fix typo in bandcamp importer

This commit is contained in:
Laurent Monin 2019-12-21 13:33:39 +01:00
parent f538b9b6bb
commit 147f954495
No known key found for this signature in database
GPG key ID: D859F01B646C07A7

View file

@ -1,7 +1,7 @@
// ==UserScript==
// @name Import Bandcamp releases to MusicBrainz
// @description Add a button on Bandcamp's album pages to open MusicBrainz release editor with pre-filled data for the selected release
// @version 2019.12.21.2
// @version 2019.12.21.3
// @namespace http://userscripts.org/users/22504
// @downloadURL https://raw.github.com/murdos/musicbrainz-userscripts/master/bandcamp_importer.user.js
// @updateURL https://raw.github.com/murdos/musicbrainz-userscripts/master/bandcamp_importer.user.js
@ -241,7 +241,7 @@ var BandcampImport = {
if (typeof label == 'undefined') {
return '';
}
return select.textContent;
return label.textContent;
}
};