Skip to content

Commit b49d11a

Browse files
bmmmmclaude
andcommitted
Include event time in RSS feed title
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 990b5d1 commit b49d11a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/sync-events.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ function generateRSS(cards) {
277277

278278
for (const c of cards.slice(0, 15)) {
279279
const guid = `bitcircus101-${c.date.replace(/-/g, "")}-${c.type}`;
280-
const titleParts = [`[${c.date}] ${c.title}`];
280+
const datePart = c.time ? `${c.date} ${c.time}` : c.date;
281+
const titleParts = [`[${datePart}] ${c.title}`];
281282
if (c.location) titleParts.push(`@ ${c.location}`);
282283
const fullTitle = titleParts.join(" ");
283284

0 commit comments

Comments
 (0)