From 4b412ae0f3ba42eb1e94e3ca446a73228f4901a3 Mon Sep 17 00:00:00 2001 From: ycc Date: Thu, 28 Mar 2024 00:45:40 +0100 Subject: [PATCH] InvitationAnswerMessageReadResponse --- client/helpers/invitationAnswerHelper.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/helpers/invitationAnswerHelper.go b/client/helpers/invitationAnswerHelper.go index 159e93b..5222ef2 100644 --- a/client/helpers/invitationAnswerHelper.go +++ b/client/helpers/invitationAnswerHelper.go @@ -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