From 72060204d43905032e8d36ac1d0f68148041b6a7 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Wed, 15 Mar 2023 12:39:41 -0500 Subject: [PATCH] fix segfault in channels impl eventmodel --- channels/storage/impl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/storage/impl.go b/channels/storage/impl.go index de2f38b01..f9506fb23 100644 --- a/channels/storage/impl.go +++ b/channels/storage/impl.go @@ -128,7 +128,7 @@ func (i *impl) ReceiveReaction(channelID *id.ID, messageID, reactionTo message.I // make no update. func (i *impl) UpdateFromUUID(uuid uint64, messageID *message.ID, timestamp *time.Time, round *rounds.Round, pinned, hidden *bool, status *channels.SentStatus) { - parentErr := errors.New("failed to UpdateFromMessageID") + parentErr := errors.New("failed to UpdateFromUUID") msgToUpdate := &Message{ Id: uuid, -- GitLab