web服务监测网络变化,及时更新IP

This commit is contained in:
kunfei 2022-05-08 07:37:48 +08:00
parent 1d474c716c
commit a6bf5d696c

View File

@ -48,7 +48,17 @@ class WebService : BaseService() {
upTile(true)
networkChangedListener.register()
networkChangedListener.onNetworkChanged = {
upWebServer()
val address = NetworkUtils.getLocalIPAddress()
if (address == null) {
hostAddress = getString(R.string.network_connection_unavailable)
notificationContent = hostAddress
upNotification()
} else {
hostAddress = getString(R.string.http_ip, address.hostAddress, getPort())
notificationContent = hostAddress
upNotification()
}
postEvent(EventBus.WEB_SERVICE, hostAddress)
}
}