mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
refactor(feed): drop unused aggregate getter, dedupe sender parse
The sender-in-title rendering reads the FeedConfig DTO via the read model, so the Feed.senderInTitle getter had no consumer — remove it. In buildFeed, parse the from-address once and reuse it for both the title prefix and the author; drop the dead `?? email.from` fallback (parseFromAddress already returns the address as the name). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -74,17 +74,17 @@ function buildFeed(
|
||||
baseUrl,
|
||||
EmailAddress.parse(email.from)?.siteBaseUrl() ?? "",
|
||||
);
|
||||
const sender = parseFromAddress(email.from);
|
||||
const subject = htmlToText(email.subject);
|
||||
const title = feedConfig.sender_in_title
|
||||
? `[${parseFromAddress(email.from).name ?? email.from}] ${subject}`
|
||||
: subject;
|
||||
feed.addItem({
|
||||
title,
|
||||
title: feedConfig.sender_in_title
|
||||
? `[${sender.name}] ${subject}`
|
||||
: subject,
|
||||
id: entryUrl,
|
||||
link: entryUrl,
|
||||
description: bodyContent,
|
||||
content: bodyContent,
|
||||
author: [parseFromAddress(email.from)],
|
||||
author: [sender],
|
||||
date: new Date(email.receivedAt),
|
||||
enclosure: firstAttachment
|
||||
? {
|
||||
|
||||
Reference in New Issue
Block a user