From 857ef6f28f9b9fb85163919f31f04f9ea29ba4a3 Mon Sep 17 00:00:00 2001 From: liyp Date: Sun, 21 Apr 2024 11:05:23 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E6=97=B6=E5=8C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index b535373..9d9f091 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,12 @@ func insertMessage(db *sql.DB, data map[string]interface{}) error { // id := data["message_id"].(float64) post_type := data["post_type"].(string) message_type := data["message_type"].(string) - message_time := (time.Unix(int64(data["time"].(float64)), 0).UTC()).Format("2006-01-02 15:04:05") + // 设置东八区时间 + loc, err := time.LoadLocation("Asia/Shanghai") + if err != nil { + log.Fatal(err) + } + message_time := (time.Unix(int64(data["time"].(float64)), 0).In(loc)).Format("2006-01-02 15:04:05") group_id := data["group_id"].(float64) message_id := data["message_id"].(float64) raw_message := data["raw_message"].(string)