From aa463e0af13f20d0fe1e8441388fe7667e5d1301 Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 15 Dec 2021 18:34:02 -0500 Subject: [PATCH] New: Use https for thexem.info --- src/NzbDrone.Core/DataAugmentation/Xem/XemProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/DataAugmentation/Xem/XemProxy.cs b/src/NzbDrone.Core/DataAugmentation/Xem/XemProxy.cs index 26c647cce..21955da6d 100644 --- a/src/NzbDrone.Core/DataAugmentation/Xem/XemProxy.cs +++ b/src/NzbDrone.Core/DataAugmentation/Xem/XemProxy.cs @@ -18,7 +18,7 @@ namespace NzbDrone.Core.DataAugmentation.Xem public class XemProxy : IXemProxy { - private const string ROOT_URL = "http://thexem.info/map/"; + private const string ROOT_URL = "https://thexem.info/map/"; private readonly Logger _logger; private readonly IHttpClient _httpClient;