From dfeb0a795df37dfb9b0df27ada5c460678f93812 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Fri, 18 Jul 2025 11:35:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=20SubscribeToFeed=20=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E4=B8=AD=E6=B7=BB=E5=8A=A0=20Creator=20=E5=92=8C=20Cr?= =?UTF-8?q?eateAt=20=E5=AD=97=E6=AE=B5=E4=BB=A5=E8=AE=B0=E5=BD=95=E8=AE=A2?= =?UTF-8?q?=E9=98=85=E8=80=85=E4=BF=A1=E6=81=AF=E5=92=8C=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/rss/rss.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handler/rss/rss.go b/handler/rss/rss.go index 4ef4e7a..a7cb7fb 100644 --- a/handler/rss/rss.go +++ b/handler/rss/rss.go @@ -121,6 +121,8 @@ func SubscribeToFeed(feedURL string, userID int64, groupID int64) (string, error // 创建订阅关系 newSubscribe := RssSubscribe{ + Creator: int(userID), + CreateAt: time.Now(), FeedID: feedID, GroupID: int(groupID), LastItemHash: items[0].Hash,