From 54bc7b28da5e8e03ace0d3750765a6d8bfb2e4e0 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Wed, 17 Jun 2026 13:29:09 -0400 Subject: [PATCH] Fix RSS feed URL to use correct Anchor s/ path Co-Authored-By: Claude Sonnet 4.6 --- server/routes/episodes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/episodes.js b/server/routes/episodes.js index 38914de..6430396 100644 --- a/server/routes/episodes.js +++ b/server/routes/episodes.js @@ -1,6 +1,6 @@ import { sanitizeUrl } from '../study-helpers.js' -const RSS_FEED_URL = 'https://anchor.fm/nmemmert/podcast/rss' +const RSS_FEED_URL = 'https://anchor.fm/s/11068d290/podcast/rss' let episodesCache = null let episodesCacheAt = 0 const EPISODES_CACHE_TTL = 30 * 60 * 1000