From 3f37f02e846fa8eed6443e6c1390cc530810e80e Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 4 Jan 2018 21:11:32 +0000 Subject: [PATCH] Use https for web services. --- OpenRA.Mods.Common/WebServices.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OpenRA.Mods.Common/WebServices.cs b/OpenRA.Mods.Common/WebServices.cs index 6c0706e966..ba7c549773 100644 --- a/OpenRA.Mods.Common/WebServices.cs +++ b/OpenRA.Mods.Common/WebServices.cs @@ -19,11 +19,11 @@ namespace OpenRA.Mods.Common public class WebServices : IGlobalModData { - public readonly string ServerList = "http://master.openra.net/games"; - public readonly string ServerAdvertise = "http://master.openra.net/ping"; - public readonly string MapRepository = "http://resource.openra.net/map/"; - public readonly string GameNews = "http://master.openra.net/gamenews"; - public readonly string VersionCheck = "http://master.openra.net/versioncheck"; + public readonly string ServerList = "https://master.openra.net/games"; + public readonly string ServerAdvertise = "https://master.openra.net/ping"; + public readonly string MapRepository = "https://resource.openra.net/map/"; + public readonly string GameNews = "https://master.openra.net/gamenews"; + public readonly string VersionCheck = "https://master.openra.net/versioncheck"; public ModVersionStatus ModVersionStatus { get; private set; } const int VersionCheckProtocol = 1;