Skip to content

Commit

Permalink
WireDash "ghost" PSK bug fix
Browse files Browse the repository at this point in the history
fixed bug that caused a "ghost" PSK
  • Loading branch information
aguilaair committed Aug 20, 2020
1 parent b98e1f0 commit fd0755d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/widget/SSIDInput.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ class _SSIDInputState extends State<SSIDInput> {
} else {
c.setWifi(bssid: "", ssid: "", psk: "");
}
if(c.wifiPSK != null){
pskController.text = c.wifiPSK;
}
}

@override
Expand Down

0 comments on commit fd0755d

Please sign in to comment.