Update Manager now uses TLS.

Solves issue #1633
This commit is contained in:
Chris Nord 2018-10-02 16:35:46 -07:00
parent f02545f7f6
commit 207925ddf1
2 changed files with 2 additions and 1 deletions

View file

@ -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. 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 ## Upcoming Changes
* Update tracker now uses TLS (@pandabear41)
* API: Added return in OnNameCollision if hook has been handled. (@Patrikkk) * API: Added return in OnNameCollision if hook has been handled. (@Patrikkk)
* API: Added hooks for item, projectile and tile bans (@deadsurgeon42) * API: Added hooks for item, projectile and tile bans (@deadsurgeon42)
* API: Changed `PlayerHooks` permission hook mechanisms to allow negation from hooks (@deadsurgeon42) * API: Changed `PlayerHooks` permission hook mechanisms to allow negation from hooks (@deadsurgeon42)

View file

@ -33,7 +33,7 @@ namespace TShockAPI
/// </summary> /// </summary>
public class UpdateManager 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(); private HttpClient _client = new HttpClient();
/// <summary> /// <summary>