From 8deb74e9a40c05cba109108362b8e55e0c3042c3 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Wed, 16 Jul 2025 15:39:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20RSS=20=E8=A7=A3?= =?UTF-8?q?=E6=9E=90=E8=BF=94=E5=9B=9E=E7=9A=84=E6=9D=A1=E7=9B=AE=E6=95=B0?= =?UTF-8?q?=E9=87=8F=EF=BC=8C=E7=A1=AE=E4=BF=9D=E8=BF=94=E5=9B=9E=E7=AC=AC?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E6=9D=A1=E7=9B=AE=E7=9A=84=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/rss/rss.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/rss/rss.go b/handler/rss/rss.go index d38d6d3..9f916d4 100644 --- a/handler/rss/rss.go +++ b/handler/rss/rss.go @@ -36,7 +36,7 @@ func TestRss(msg model.Message) (reply *model.Reply) { } } return &model.Reply{ - ReplyMsg: fmt.Sprintf("解析RSS源成功: %d 个条目\n%v", len(items), items), + ReplyMsg: fmt.Sprintf("解析RSS源成功: %d 个条目\n%v", len(items), items[0]), ReferOriginMsg: true, FromMsg: msg, }