Connect to audioscrobbler via https

This will protect us from both MITM attacks, and also increase the
privacy of users.
pull/2828/head
Billie Thompson 2 years ago committed by Qstick
parent b12fac5d8c
commit 39adb36359

@ -19,7 +19,7 @@ namespace NzbDrone.Core.ImportLists.LastFm
public LastFmTagSettings()
{
BaseUrl = "http://ws.audioscrobbler.com/2.0/?method=tag.gettopartists";
BaseUrl = "https://ws.audioscrobbler.com/2.0/?method=tag.gettopartists";
ApiKey = "204c76646d6020eee36bbc51a2fcd810";
Count = 25;
}

@ -19,7 +19,7 @@ namespace NzbDrone.Core.ImportLists.LastFm
public LastFmUserSettings()
{
BaseUrl = "http://ws.audioscrobbler.com/2.0/?method=user.gettopartists";
BaseUrl = "https://ws.audioscrobbler.com/2.0/?method=user.gettopartists";
ApiKey = "204c76646d6020eee36bbc51a2fcd810";
Count = 25;
}

Loading…
Cancel
Save