mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-14 04:12:28 +00:00
discogs: remove useless else
This commit is contained in:
parent
2124537406
commit
0842b1e3a2
1 changed files with 2 additions and 1 deletions
|
@ -591,7 +591,8 @@ function parseDiscogsRelease(data) {
|
|||
if (discogsTrack.type_ == 'heading') {
|
||||
heading = discogsTrack.title;
|
||||
return;
|
||||
} else if (discogsTrack.type_ != 'track' && discogsTrack.type_ != 'index') {
|
||||
}
|
||||
if (discogsTrack.type_ != 'track' && discogsTrack.type_ != 'index') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue