Skip to content

Commit

Permalink
Fixed Network/Wifi seems not work (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed Jan 3, 2024
1 parent 824e415 commit 0da4887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InternetTest/InternetTest/Pages/HomePage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ internal void LoadNetworkCard()
string ssid = Global.GetCurrentWifiSSID();

NetworkTxt.Text = (ssid == null || !connected) ? Properties.Resources.NotConnectedS : ssid;
NetworkTitleTxt.Text = (ssid == null || !connected) ? Properties.Resources.Network : Properties.Resources.WiFi;
NetworkTitleTxt.Text = Properties.Resources.WiFi;
NetworkIconTxt.Text = (ssid == null || !connected) ? "\uFC27" : "\uF8C5";

}
Expand Down

0 comments on commit 0da4887

Please sign in to comment.