From 564ebfbc2c563c8a86e13e00358bba1d272036d2 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 1 Sep 2025 21:11:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=B0=E5=A2=9Emap=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend_nuxt/pages/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend_nuxt/pages/index.vue b/frontend_nuxt/pages/index.vue index 2c82648fe..d671abacc 100644 --- a/frontend_nuxt/pages/index.vue +++ b/frontend_nuxt/pages/index.vue @@ -292,6 +292,7 @@ const { members: (p.participants || []).map((m) => ({ id: m.id, avatar: m.avatar })), comments: p.commentCount, views: p.views, + rssExcluded: p.rssExcluded || false, time: TimeManager.format( selectedTopic.value === '最新回复' ? p.lastReplyAt || p.createdAt : p.createdAt, ), @@ -333,6 +334,7 @@ const fetchNextPage = async () => { members: (p.participants || []).map((m) => ({ id: m.id, avatar: m.avatar })), comments: p.commentCount, views: p.views, + rssExcluded: p.rssExcluded || false, time: TimeManager.format( selectedTopic.value === '最新回复' ? p.lastReplyAt || p.createdAt : p.createdAt, ),