From ec37415261a6a2ec019e063f3cb5433645c01019 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 4 Aug 2021 12:02:08 +0200 Subject: [PATCH] AcknowledgementHistory#Author: make missing value NULL, not "" refs #305 --- pkg/icingadb/v1/history/ack.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/icingadb/v1/history/ack.go b/pkg/icingadb/v1/history/ack.go index ba9a373c..094a7e43 100644 --- a/pkg/icingadb/v1/history/ack.go +++ b/pkg/icingadb/v1/history/ack.go @@ -22,7 +22,7 @@ type AcknowledgementHistory struct { HistoryTableMeta `json:",inline"` AckHistoryUpserter `json:",inline"` SetTime types.UnixMilli `json:"set_time"` - Author string `json:"author"` + Author types.String `json:"author"` Comment types.String `json:"comment"` ExpireTime types.UnixMilli `json:"expire_time"` IsPersistent types.Bool `json:"is_persistent"`