From c107c7a9f8e3ffbd97fbc0b3d31b2e596b32fee6 Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Sun, 11 Jan 2026 15:59:26 +0530 Subject: [PATCH] remove omit empty from null field as it doesn't work --- internal/conversation/models/models.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/conversation/models/models.go b/internal/conversation/models/models.go index 1b64b39e..1f97d5fa 100644 --- a/internal/conversation/models/models.go +++ b/internal/conversation/models/models.go @@ -89,7 +89,7 @@ type ConversationListItem struct { AppliedSLAID null.Int `db:"applied_sla_id" json:"applied_sla_id"` NextResponseDueAt null.Time `db:"next_response_deadline_at" json:"next_response_deadline_at"` NextResponseMetAt null.Time `db:"next_response_met_at" json:"next_response_met_at"` - MentionedMessageUUID null.String `db:"mentioned_message_uuid" json:"mentioned_message_uuid,omitempty"` + MentionedMessageUUID null.String `db:"mentioned_message_uuid" json:"mentioned_message_uuid"` } // ConversationListContact represents contact info in conversation list views