From 12ebe32ba39a644fd1b68984ba06bd3433a30159 Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Tue, 2 Sep 2025 00:32:29 +0530 Subject: [PATCH] return complete contact note by refetching it using GetNote --- cmd/contacts.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/contacts.go b/cmd/contacts.go index d17958b1..536fdb85 100644 --- a/cmd/contacts.go +++ b/cmd/contacts.go @@ -211,6 +211,10 @@ func handleCreateContactNote(r *fastglue.Request) error { if err != nil { return sendErrorEnvelope(r, err) } + n, err = app.user.GetNote(n.ID) + if err != nil { + return sendErrorEnvelope(r, err) + } return r.SendEnvelope(n) }