mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix download plugin
This commit is contained in:
parent
05f23f89ae
commit
67ab979a9b
1 changed files with 1 additions and 3 deletions
|
|
@ -113,9 +113,7 @@ namespace Wox.Plugin.PluginManagement
|
|||
string json;
|
||||
try
|
||||
{
|
||||
var task = Http.Get(pluginSearchUrl + pluginName, context.Proxy);
|
||||
task.RunSynchronously();
|
||||
json = task.Result;
|
||||
json = Http.Get(pluginSearchUrl + pluginName, context.Proxy).Result;
|
||||
}
|
||||
catch (WebException e)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue