Connect to audioscrobbler via https

This will protect us from both MITM attacks, and also increase the
privacy of users.
This commit is contained in:
Billie Thompson 2022-05-13 08:00:45 +02:00 committed by Qstick
commit 39adb36359
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;
}