[BUGFIX] no pointer in type case in component

disco_info_form
Martin/Geno 5 years ago
parent 95dded61a1
commit 757e339946
No known key found for this signature in database
GPG Key ID: 9D7D3C6BFF600C6A

@ -62,9 +62,9 @@ func (c *Component) Connect(connStr string) error {
}
switch v := val.(type) {
case *StreamError:
case StreamError:
return errors.New("handshake failed " + v.Error.Local)
case *Handshake:
case Handshake:
return nil
default:
return errors.New("unexpected packet, got " + v.Name())

Loading…
Cancel
Save