From 24a69f8cbb450d44266e6da75e2f258d6c319998 Mon Sep 17 00:00:00 2001 From: Patrick Britton Date: Mon, 9 Feb 2026 08:39:02 -0600 Subject: [PATCH] fix: use article title as post body instead of bare URL for RSS posts --- go-backend/internal/services/official_accounts_service.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go-backend/internal/services/official_accounts_service.go b/go-backend/internal/services/official_accounts_service.go index fe8c3f0..30bc777 100644 --- a/go-backend/internal/services/official_accounts_service.go +++ b/go-backend/internal/services/official_accounts_service.go @@ -473,8 +473,8 @@ func (s *OfficialAccountsService) PostNextArticle(ctx context.Context, configID var body string switch cfg.AccountType { case "rss": - // Post the link directly - body = art.Link + // Post the title — the link preview card handles the URL display + body = art.Title case "news": // Generate AI commentary rssItem := &RSSItem{ @@ -492,7 +492,7 @@ func (s *OfficialAccountsService) PostNextArticle(ctx context.Context, configID } body = generated default: - body = art.Link + body = art.Title } // Create the post