mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix check interface
This commit is contained in:
parent
6a7c4036d3
commit
64c0f526fd
6 changed files with 7 additions and 7 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue