From 327d8f01986d15c8fd96c5a36d2455a19db4ea3d Mon Sep 17 00:00:00 2001 From: qydysky Date: Mon, 8 Jul 2024 23:14:49 +0000 Subject: [PATCH] =?utf8?q?Improve=20state=20=E6=B7=BB=E5=8A=A0=20Liveing?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- CV/Var.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CV/Var.go b/CV/Var.go index d8535bd..06e083f 100644 --- a/CV/Var.go +++ b/CV/Var.go @@ -103,6 +103,7 @@ func (t *Common) MarshalJSON() ([]byte, error) { Locked bool Note string LiveStartTime string + Liveing bool }{ Live: append([]*LiveQn{}, t.Live...), LiveQn: t.Live_qn, @@ -118,6 +119,7 @@ func (t *Common) MarshalJSON() ([]byte, error) { Locked: t.Locked, Note: t.Note, LiveStartTime: t.Live_Start_Time.Format(time.DateTime), + Liveing: t.Liveing, }) } -- 2.39.2