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