From 6d92cae74edfe2f1a6bf835dfc2be6511d72c8a1 Mon Sep 17 00:00:00 2001 From: Aegis Assistant Date: Tue, 14 Apr 2026 14:02:00 -0700 Subject: [PATCH] fix: use episode URL instead of channel URL for podcasts The podcast feed was using the channel URL from config (e.g., youtube.com/@NoPriorsPodcast) instead of the specific episode URL from RSS. This caused all podcast links to point to the channel page rather than the actual episode. Fix: Use selected.link (episode URL from RSS) instead of selected.podcast.url (channel URL) --- scripts/generate-feed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-feed.js b/scripts/generate-feed.js index 4149c7fc5..f5f7cf6b3 100755 --- a/scripts/generate-feed.js +++ b/scripts/generate-feed.js @@ -254,7 +254,7 @@ async function fetchPodcastContent(podcasts, apiKey, state, errors) { name: selected.podcast.name, title: selected.title, guid: selected.guid, - url: selected.podcast.url, + url: selected.link, publishedAt: selected.publishedAt, transcript: result.transcript }];