mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
web服务监测网络变化,及时更新IP
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user