diff --git a/web-src/src/components/ListArtists.vue b/web-src/src/components/ListArtists.vue index 9a3a0964..ecb449d4 100644 --- a/web-src/src/components/ListArtists.vue +++ b/web-src/src/components/ListArtists.vue @@ -61,9 +61,7 @@ export default { methods: { open_artist: function (artist) { this.selected_artist = artist - if (this.media_kind_resolved === 'podcast') { - // No artist page for podcasts - } else if (this.media_kind_resolved === 'audiobook') { + if (this.media_kind_resolved === 'audiobook') { this.$router.push({ path: '/audiobooks/artists/' + artist.id }) } else { this.$router.push({ path: '/music/artists/' + artist.id })