diff --git a/src/views/Feed.vue b/src/views/Feed.vue index 75f32f8..bc9aa4c 100644 --- a/src/views/Feed.vue +++ b/src/views/Feed.vue @@ -53,7 +53,7 @@ export default { try { const podcastData = await axios.get(generateUrl('/apps/repod/podcast?url={url}', { url: this.url })) - if (podcastData.data.atomLink !== this.url) { + if (podcastData.data.atomLink && podcastData.data.atomLink !== this.url) { this.$router.push(toUrl(podcastData.data.atomLink)) }