Use https urls when querying musicbrainz

Musicbrainz no longer normalizes discogs URLs to http, so we now need to search for the https form.

Fixes #124
This commit is contained in:
Johannes 2016-11-02 00:22:12 +00:00 committed by GitHub
parent 20d6420b9d
commit 341ad8134e

View file

@ -291,7 +291,7 @@ function getDiscogsLinkKey(url) {
link_infos[key] = {
type: m[1],
id: m[2],
clean_url: 'http://www.discogs.com/' + m[1] + '/' + m[2]
clean_url: 'https://www.discogs.com/' + m[1] + '/' + m[2]
}
LOGGER.debug('getDiscogsLinkKey:' + url + ' --> ' + key);
} else {