fix: need to store connectionUris

This commit is contained in:
Derrick Hammer 2024-01-08 12:11:54 -05:00
parent 8a47faecac
commit b70d350447
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 8 additions and 0 deletions

View File

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