diff --git a/mb_ui_enhancements.user.js b/mb_ui_enhancements.user.js
index 0bb24c1..16b15e7 100644
--- a/mb_ui_enhancements.user.js
+++ b/mb_ui_enhancements.user.js
@@ -47,7 +47,7 @@ $(document).ready(function () {
$('h2.discography').before('
Top Last.fm recordings
');
var mbid = window.location.href.match(re)[1];
let toptracks = $.getJSON(
- `http://ws.audioscrobbler.com/2.0/?method=artist.gettoptracks&mbid=${mbid}&api_key=${LASTFM_APIKEY}&format=json`,
+ `https://ws.audioscrobbler.com/2.0/?method=artist.gettoptracks&mbid=${mbid}&api_key=${LASTFM_APIKEY}&format=json`,
function (data) {
$.each(data.toptracks.track, function (index, track) {
if (index >= 5) return true;