Fix timer usage for monitor check update

This commit is contained in:
世界 2024-04-02 22:53:47 +08:00
parent 8bfb64cf04
commit cddf60537d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -72,10 +72,11 @@ func (m *defaultInterfaceMonitor) Start() error {
}
func (m *defaultInterfaceMonitor) delayCheckUpdate() {
if m.checkUpdateTimer != nil {
m.checkUpdateTimer.Stop()
if m.checkUpdateTimer == nil {
m.checkUpdateTimer = time.AfterFunc(time.Second, m.postCheckUpdate)
} else {
m.checkUpdateTimer.Reset(time.Second)
}
m.checkUpdateTimer = time.AfterFunc(time.Second, m.postCheckUpdate)
}
func (m *defaultInterfaceMonitor) postCheckUpdate() {