Skip to content

Commit

Permalink
fix: pass correct ids
Browse files Browse the repository at this point in the history
  • Loading branch information
naomi-lgbt committed Jan 17, 2025
1 parent d0afb94 commit a98ceb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/fetchRss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,13 @@ export const fetchRss = async(bot: ExtendedClient): Promise<void> => {
= await fetchYoutube(
bot,
`https://www.youtube.com/feeds/videos.xml?channel_id=${youtubeIds.espanol}`,
latestPosts?.youtubeId,
latestPosts?.esYoutubeId,
);
const { embeds: ptYoutubeEmbeds, latestId: ptYoutubeLatestId }
= await fetchYoutube(
bot,
`https://www.youtube.com/feeds/videos.xml?channel_id=${youtubeIds.portugues}`,
latestPosts?.youtubeId,
latestPosts?.ptYoutubeId,
);
const { embeds: forumEmbeds, latestId: forumLatestId } = await fetchForum(
bot,
Expand Down

0 comments on commit a98ceb5

Please sign in to comment.