mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2025-03-04 22:37:16 +00:00
2010-02-03~1
This commit is contained in:
parent
da5db06201
commit
b3caec1133
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ function parseReleases(xmldoc) {
|
|||
} else {
|
||||
// Vinyls disc numbering: A1, B3, ...
|
||||
tmp = trackPosition.match(/^([A-Za-z])\d*/);
|
||||
if (tmp && tmp[0]) {
|
||||
if (tmp && tmp[0] && tmp[0] != "V") {
|
||||
var code = tmp[0].charCodeAt(0)-65;
|
||||
releaseNumber = (code-code%2)/2+1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue