This commit is contained in:
sohunjug 2026-01-11 19:38:14 -08:00 committed by GitHub
commit e2db59b1ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,6 +37,9 @@ func (r Route) Equal(t Route) bool {
if r.Install != t.Install {
return false
}
if r.Via.String() != t.Via.String() {
return false
}
return true
}