From 39adb36359214b087ac17cf7e339354dd9705b12 Mon Sep 17 00:00:00 2001 From: Billie Thompson Date: Fri, 13 May 2022 08:00:45 +0200 Subject: [PATCH] Connect to audioscrobbler via https This will protect us from both MITM attacks, and also increase the privacy of users. --- src/NzbDrone.Core/ImportLists/LastFm/LastFmTagSettings.cs | 2 +- src/NzbDrone.Core/ImportLists/LastFm/LastFmUserSettings.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/ImportLists/LastFm/LastFmTagSettings.cs b/src/NzbDrone.Core/ImportLists/LastFm/LastFmTagSettings.cs index b9a4b41bc..21e300aea 100644 --- a/src/NzbDrone.Core/ImportLists/LastFm/LastFmTagSettings.cs +++ b/src/NzbDrone.Core/ImportLists/LastFm/LastFmTagSettings.cs @@ -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; } diff --git a/src/NzbDrone.Core/ImportLists/LastFm/LastFmUserSettings.cs b/src/NzbDrone.Core/ImportLists/LastFm/LastFmUserSettings.cs index 07d7ad41c..836f871c1 100644 --- a/src/NzbDrone.Core/ImportLists/LastFm/LastFmUserSettings.cs +++ b/src/NzbDrone.Core/ImportLists/LastFm/LastFmUserSettings.cs @@ -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; }