Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha committed Nov 4, 2023
1 parent c246b28 commit 697e453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wap/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ func handleAppState(ctx context.Context, isConnected bool, stopServer chan struc
if !isHotspotStarted {
//Disconnect from external Wi-Fi before starting server as it causes Android in some cases not being able to connect to hotspot

// Check if /home/pi/V6.info exists which means fula-ota update is completed before we disconnect wifi
if _, err := os.Stat("/home/pi/V6.info"); err == nil {
// Check if /home/V6.info exists which means fula-ota update is completed before we disconnect wifi
if _, err := os.Stat("/home/V6.info"); err == nil {
// File exists
if err := wifi.DisconnectFromExternalWifi(ctx); err != nil {
log.Errorw("disconnect from wifi on startup", "err", err)
Expand Down

0 comments on commit 697e453

Please sign in to comment.