From 49f5e0ea40885b7f9f9a29d55ea9e8b39f25604e Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 1 Jan 2026 14:04:06 -0500 Subject: [PATCH] Fix build issue --- internal/store/mock/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/store/mock/store.go b/internal/store/mock/store.go index df469e8..cad38b8 100644 --- a/internal/store/mock/store.go +++ b/internal/store/mock/store.go @@ -37,7 +37,7 @@ func (m *MockMessageStore) CreateMessage(ctx context.Context, msg *message.Messa } var id uuid.UUID - if msg.Id != nil && msg.Id == uuid.Nil { + if msg.Id != nil && *msg.Id == uuid.Nil { id = uuid.New() msg.Id = &id }