diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-28 18:33:42 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-28 18:33:42 +0300 |
| commit | fe589d0e841bf3a6d7c3206a7e48c8e7ae9a91a8 (patch) | |
| tree | 5ff891ca5d8fcb9e7e3afbb8f350f60c8fbf5e3b /Software/Visual_Studio/PPC/Tango.PPC.UI/Connectivity | |
| parent | f3fc87dd10b3d55591a84ecbfb0612769f0c09b9 (diff) | |
| download | Tango-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.cs | 4 |
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(); }); } |
