From 207925ddf1f0119f36d7aa67322e97506f5a831e Mon Sep 17 00:00:00 2001 From: Chris Nord Date: Tue, 2 Oct 2018 16:35:46 -0700 Subject: [PATCH] Update Manager now uses TLS. Solves issue #1633 --- CHANGELOG.md | 1 + TShockAPI/UpdateManager.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4a9b410..2382417d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when adding new entries; sign your name off when you add or change something. This should primarily be things like user changes, not necessarily codebase changes unless it's really relevant or large. ## Upcoming Changes +* Update tracker now uses TLS (@pandabear41) * API: Added return in OnNameCollision if hook has been handled. (@Patrikkk) * API: Added hooks for item, projectile and tile bans (@deadsurgeon42) * API: Changed `PlayerHooks` permission hook mechanisms to allow negation from hooks (@deadsurgeon42) diff --git a/TShockAPI/UpdateManager.cs b/TShockAPI/UpdateManager.cs index bbf72a84..db8b4234 100644 --- a/TShockAPI/UpdateManager.cs +++ b/TShockAPI/UpdateManager.cs @@ -33,7 +33,7 @@ namespace TShockAPI /// public class UpdateManager { - private const string UpdateUrl = "http://update.tshock.co/latest/"; + private const string UpdateUrl = "https://update.tshock.co/latest/"; private HttpClient _client = new HttpClient(); ///