Fix: Use specific episode URL instead of channel URL - #32
Open
h6y3-aegis wants to merge 1 commit into
Open
Conversation
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug
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 "Listen" links to point to the channel page rather than the actual episode.Example
Before:
https://www.youtube.com/@NoPriorsPodcast(channel page)After:
https://youtube.com/watch?v=Iu4gEnZFQz8(specific episode)Fix
Changed line 257 in
scripts/generate-feed.js:The
selected.linkfield already contains the episode URL from RSS parsing (line 168), so we just needed to use it instead of the channel URL.Testing
The RSS parser extracts episode URLs correctly — this was a one-line fix to use the right field.