Skip to content

Commit

Permalink
Remove rogue URL path
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla authored Nov 27, 2023
1 parent ab60024 commit 04c066a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Podcast.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface Props {
}
const { podcast, episodeData } = Astro.props;
var url = 'podcast/' + slugify(podcast.title[0]);
var url = slugify(podcast.title[0]);
function slugify(str) {
str = str.replace(/^\s+|\s+$/g, '');
Expand Down

0 comments on commit 04c066a

Please sign in to comment.