Merge pull request #1638 from pandabear41/update-tls
Update Manager now uses TLS.
This commit is contained in:
commit
18fe7f8412
2 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ namespace TShockAPI
|
|||
/// </summary>
|
||||
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();
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue