mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
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:
parent
b12fac5d8c
commit
39adb36359
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue