Rename ConnectToWifiNetwork() to JoinWifiNetwork() for brevety and clarity

This commit is contained in:
2018-09-20 12:08:20 +02:00
parent 13267b2d5a
commit 5f6dcd2253
3 changed files with 5 additions and 5 deletions

View File

@ -101,7 +101,7 @@ func configureWifi() {
}
log.Println("connecting module to wifi network")
if err := updater.ConnectToWifiNetwork(ssid, true); err != nil {
if err := updater.JoinWifiNetwork(ssid, true); err != nil {
log.Fatal(err)
}
log.Printf("you can now switch to the wifi network and start phase '%s'", phaseUpdateThenReboot)