From 36de6b612e13d3823758824bb0579a2f4c30b011 Mon Sep 17 00:00:00 2001 From: nikki Date: Fri, 15 Aug 2014 00:51:44 +0200 Subject: [PATCH] Map Discogs "Unofficial Release" to MusicBrainz "Bootleg" --- discogs_importer.user.js | 1 + 1 file changed, 1 insertion(+) diff --git a/discogs_importer.user.js b/discogs_importer.user.js index c66a944..8ace0f7 100644 --- a/discogs_importer.user.js +++ b/discogs_importer.user.js @@ -314,6 +314,7 @@ function parseDiscogsRelease(data) { if (discogsRelease.formats[i].name == "Vinyl" && desc == "LP") release_formats[release_formats.length-1] = '12" Vinyl'; // Release status if (desc.match(/Promo|Smplr/)) release.status = "promotion"; + if (desc.match(/Unofficial Release/)) release.status = "bootleg"; // Release type if (desc.match(/Compilation/)) release.type = "compilation"; if (desc.match(/Single/)) release.type = "single";