From 53f2f9d17b24634e0f0a796124a373702caa6b6f Mon Sep 17 00:00:00 2001 From: Johannes Date: Mon, 15 Feb 2016 13:44:38 +0000 Subject: [PATCH] Use http url for querying musicbrainz Musicbrainz normalizes urls to http, so we can't search for https urls. --- discogs_importer.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discogs_importer.user.js b/discogs_importer.user.js index 3f3d864..7231243 100644 --- a/discogs_importer.user.js +++ b/discogs_importer.user.js @@ -291,7 +291,7 @@ function getDiscogsLinkKey(url) { link_infos[key] = { type: m[1], id: m[2], - clean_url: 'https://www.discogs.com/' + m[1] + '/' + m[2] + clean_url: 'http://www.discogs.com/' + m[1] + '/' + m[2] } LOGGER.debug('getDiscogsLinkKey:' + url + ' --> ' + key); } else {