Update async/await call.

This commit is contained in:
Jared Goodwin 2019-03-17 11:45:07 -07:00
parent e48a84fcad
commit efef0b8873

View File

@ -71,9 +71,9 @@ namespace Remotely_Desktop.ViewModels
}
Program.SetEventHandlers();
await Task.Run(() =>
await Task.Run(async () =>
{
Program.HandleConnection();
await Program.HandleConnection();
});
}