Fix network/interface monitor

This commit is contained in:
世界 2024-02-26 13:24:19 +08:00
parent 3077a82650
commit 96ac931b11
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 15 additions and 11 deletions

View file

@ -1182,6 +1182,10 @@ func (r *Router) updateWIFIState() {
state := r.platformInterface.ReadWIFIState()
if state != r.wifiState {
r.wifiState = state
r.logger.Info("updated WIFI state: SSID=", state.SSID, ", BSSID=", state.BSSID)
if state.SSID == "" && state.BSSID == "" {
r.logger.Info("updated WIFI state: disconnected")
} else {
r.logger.Info("updated WIFI state: SSID=", state.SSID, ", BSSID=", state.BSSID)
}
}
}