Fix check interface

This commit is contained in:
世界 2024-11-12 14:29:11 +08:00
parent 6a7c4036d3
commit 64c0f526fd
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 7 additions and 7 deletions

View file

@ -171,7 +171,7 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
return E.Cause(err, "find updated interface: ", defaultInterface.Name)
}
m.defaultInterface.Store(newInterface)
if oldInterface != nil && oldInterface.Name == newInterface.Name && oldInterface.Index == newInterface.Index {
if oldInterface != nil && oldInterface.Equals(*newInterface) {
return nil
}
m.emit(EventInterfaceUpdate)