diff --git a/protocol/signed/handshake_done.go b/protocol/signed/handshake_done.go index 4f9920e..57d174c 100644 --- a/protocol/signed/handshake_done.go +++ b/protocol/signed/handshake_done.go @@ -136,5 +136,13 @@ func (h *HandshakeDone) DecodeMessage(dec *msgpack.Decoder) error { } h.supportedFeatures = supportedFeatures + + connectionUris, err := utils.DecodeMsgpackURLArray(dec) + + if err != nil { + return err + } + + h.connectionUris = connectionUris return nil }