mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2025-01-06 14:38:42 +00:00
Use http url for querying musicbrainz
Musicbrainz normalizes urls to http, so we can't search for https urls.
This commit is contained in:
parent
f64b4ba403
commit
53f2f9d17b
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ function getDiscogsLinkKey(url) {
|
||||||
link_infos[key] = {
|
link_infos[key] = {
|
||||||
type: m[1],
|
type: m[1],
|
||||||
id: m[2],
|
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);
|
LOGGER.debug('getDiscogsLinkKey:' + url + ' --> ' + key);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue