Web articles

This commit is contained in:
2025-07-01 00:44:48 +08:00
parent ccb8a4e3f4
commit 05bf2cd055
3 changed files with 131 additions and 1 deletions

View File

@ -112,7 +112,8 @@ public class WebFeedService(
{
var scrapedArticle = await webReaderService.ScrapeArticleAsync(itemUrl, cancellationToken);
preview = scrapedArticle.LinkEmbed;
content = scrapedArticle.Content;
if (scrapedArticle.Content is not null)
content = scrapedArticle.Content;
}
else
{