fix: need to store connectionUris
This commit is contained in:
parent
8a47faecac
commit
b70d350447
|
@ -136,5 +136,13 @@ func (h *HandshakeDone) DecodeMessage(dec *msgpack.Decoder) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
h.supportedFeatures = supportedFeatures
|
h.supportedFeatures = supportedFeatures
|
||||||
|
|
||||||
|
connectionUris, err := utils.DecodeMsgpackURLArray(dec)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
h.connectionUris = connectionUris
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue