Browse Source

fix: Check if address is nil for IsValid() function.

pull/2336/head
cty123 1 year ago committed by yuhan6665
parent
commit
2df418abf1
  1. 2
      common/net/destination.go

2
common/net/destination.go

@ -113,7 +113,7 @@ func (d Destination) String() string {
// IsValid returns true if this Destination is valid.
func (d Destination) IsValid() bool {
return d.Network != Network_Unknown
return d.Address != nil && d.Network != Network_Unknown
}
// AsDestination converts current Endpoint into Destination.

Loading…
Cancel
Save