fix: revert previous change on IsValid() function; add validation in getUoTConnection();

This commit is contained in:
cty123 2023-07-18 22:11:09 +02:00 committed by yuhan6665
parent 2df418abf1
commit 7aeca33729
2 changed files with 4 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.Address != nil && d.Network != Network_Unknown
return d.Network != Network_Unknown
}
// AsDestination converts current Endpoint into Destination.