Skip to content

Commit

Permalink
Update podcast feed
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla committed Dec 20, 2023
1 parent e90e256 commit d2215ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/podcast/[...page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function getStaticPaths({ paginate }) {
removeNSPrefix: true,
};
const parser = new XMLParser(options);
const feedTest = await fetch('https://feeds.zencastr.com/f/h5h0nhAi.rss');
const feedTest = await fetch('https://feeds.simplecast.com/whlwDbyc');
let rssFeedData = await feedTest.text();
let parsedFeed = await parser.parse(rssFeedData);
const allEpisodes = parsedFeed.rss.channel.item;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/podcast/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function getStaticPaths() {
removeNSPrefix: true,
};
const parser = new XMLParser(options);
const feedTest = await fetch('https://feeds.zencastr.com/f/h5h0nhAi.rss');
const feedTest = await fetch('https://feeds.simplecast.com/whlwDbyc');
let rssFeedData = await feedTest.text();
let parsedFeed = await parser.parse(rssFeedData);
const allEpisodes = parsedFeed.rss.channel.item;
Expand Down

0 comments on commit d2215ac

Please sign in to comment.