SEBWIN-366: Fixed bug where wireless network was displayed as disconnected even though it actually was connected.
This commit is contained in:
parent
4b9ec6e2d3
commit
c8bebbfa82
1 changed files with 2 additions and 2 deletions
|
@ -168,8 +168,8 @@ namespace SafeExamBrowser.SystemComponents.WirelessNetwork
|
||||||
|
|
||||||
foreach (var accessPoint in wifi.GetAccessPoints())
|
foreach (var accessPoint in wifi.GetAccessPoints())
|
||||||
{
|
{
|
||||||
// The user may only connect to an already configured wireless network!
|
// The user may only connect to an already configured or connected wireless network!
|
||||||
if (accessPoint.HasProfile)
|
if (accessPoint.HasProfile || accessPoint.IsConnected)
|
||||||
{
|
{
|
||||||
networks.Add(ToNetwork(accessPoint));
|
networks.Add(ToNetwork(accessPoint));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue