mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2025-03-04 22:37:16 +00:00
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:
parent
20d6420b9d
commit
341ad8134e
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue