Refactoring proxy, part 2

This commit is contained in:
bao-qian
2016-06-19 16:18:43 +01:00
parent 764a372e9f
commit 3efeb4a0a6
41 changed files with 98 additions and 146 deletions

View File

@@ -113,7 +113,7 @@ namespace Wox.Plugin.PluginManagement
string json;
try
{
json = Http.Get(pluginSearchUrl + pluginName, context.Proxy).Result;
json = Http.Get(pluginSearchUrl + pluginName).Result;
}
catch (WebException e)
{
@@ -156,7 +156,7 @@ namespace Wox.Plugin.PluginManagement
try
{
Http.Download(pluginUrl, filePath, context.Proxy);
Http.Download(pluginUrl, filePath);
}
catch (WebException e)
{