aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-08-28 18:33:42 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-08-28 18:33:42 +0300
commitfe589d0e841bf3a6d7c3206a7e48c8e7ae9a91a8 (patch)
tree5ff891ca5d8fcb9e7e3afbb8f350f60c8fbf5e3b /Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity
parentf3fc87dd10b3d55591a84ecbfb0612769f0c09b9 (diff)
downloadTango-fe589d0e841bf3a6d7c3206a7e48c8e7ae9a91a8.tar.gz
Tango-fe589d0e841bf3a6d7c3206a7e48c8e7ae9a91a8.zip
Some work.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity/DefaultConnectivityProvider.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity/DefaultConnectivityProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity/DefaultConnectivityProvider.cs
index c26219c34..e990b50a1 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity/DefaultConnectivityProvider.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity/DefaultConnectivityProvider.cs
@@ -95,9 +95,9 @@ namespace Tango.PPC.UI.Connectivity
Disconnect(x);
});
- RefreshAvailableWiFiNetworksCommand = new RelayCommand(() =>
+ RefreshAvailableWiFiNetworksCommand = new RelayCommand(async () =>
{
- RefreshAvailableWiFiNetworks();
+ await RefreshAvailableWiFiNetworks();
});
}