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

This commit is contained in:
cty123 2023-07-16 23:02:15 +02:00 committed by yuhan6665
parent 8eb3cfe144
commit 2df418abf1
1 changed files with 1 additions and 1 deletions

View File

@ -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.