mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-29 03:34:17 +01: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 @@ public class LastFmTagSettings : IImportListSettings
|
|||
|
||||
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 @@ public class LastFmUserSettings : IImportListSettings
|
|||
|
||||
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…
Reference in a new issue