mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
Fix monitor
This commit is contained in:
parent
d105263fed
commit
6a7c4036d3
4 changed files with 13 additions and 9 deletions
|
@ -74,7 +74,12 @@ func (m *defaultInterfaceMonitor) delayCheckUpdate() {
|
|||
}
|
||||
|
||||
func (m *defaultInterfaceMonitor) postCheckUpdate() {
|
||||
err := m.checkUpdate()
|
||||
err := m.interfaceFinder.Update()
|
||||
if err != nil {
|
||||
m.logger.Error("update interface: ", err)
|
||||
return
|
||||
}
|
||||
err = m.checkUpdate()
|
||||
if errors.Is(err, ErrNoRoute) {
|
||||
if !m.noRoute {
|
||||
m.noRoute = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue