InvitationAnswerMessageReadResponse
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
ycc 2024-03-28 00:45:40 +01:00
parent e4efff1824
commit 4b412ae0f3

View File

@ -140,12 +140,12 @@ func InvitationAnswerMessageReadResponse(invitationData []byte, invitationServer
server, err := client.GetConfig().GetIdentity().MessageServers.LoadServer(invitationServerUid)
if err != nil {
return nil, "InvitationGetMessageReadResponse: LoadServer", err
return nil, "InvitationAnswerMessageReadResponse: LoadServer", err
}
// Server inbound processing : get the invitation server
serverMsg, err := server.ProcessInboundServerResponse(invitationData)
if err != nil {
return nil, "InvitationGetMessageReadResponse: ProcessInboundServerResponse", err
return nil, "InvitationAnswerMessageReadResponse: ProcessInboundServerResponse", err
}
return serverMsg.Invitation, "", nil