From c852ad1d45d2f7324fa54ff7faca473c9f2ab645 Mon Sep 17 00:00:00 2001 From: qianlifeng Date: Thu, 3 Dec 2015 23:21:53 +0800 Subject: [PATCH] change https to http becuase the SSL has expired --- Wox.Core/Updater/UpdaterManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox.Core/Updater/UpdaterManager.cs b/Wox.Core/Updater/UpdaterManager.cs index 65778896a0..b9284a5caa 100644 --- a/Wox.Core/Updater/UpdaterManager.cs +++ b/Wox.Core/Updater/UpdaterManager.cs @@ -18,7 +18,7 @@ namespace Wox.Core.Updater public class UpdaterManager { private static UpdaterManager instance; - private const string VersionCheckURL = "https://api.getwox.com/release/latest/"; + private const string VersionCheckURL = "http://api.getwox.com/release/latest/"; private const string UpdateFeedURL = "http://upgrade.getwox.com/update.xml"; //private const string UpdateFeedURL = "http://127.0.0.1:8888/update.xml"; private static SemanticVersion currentVersion;