Fix router
All checks were successful
repod / nextcloud (push) Successful in 1m0s
repod / nodejs (push) Successful in 1m38s

This commit is contained in:
Michel Roux 2023-08-27 21:44:04 +02:00
parent a7b6c69ee2
commit aae108ffc3

View File

@ -23,9 +23,9 @@
<a :href="episode.episodeLink" target="_blank">
<strong>{{ episode.episodeName }}</strong>
</a>
<a :href="podcastLink" target="_blank">
<router-link :to="$route.params.url">
<i>{{ episode.podcastName }}</i>
</a>
</router-link>
</div>
<PauseButton v-if="!paused"
class="pointer"
@ -106,9 +106,6 @@ export default {
episode() {
return this.$store.state.player.episode
},
podcastLink() {
return atob(this.$route.params.url)
},
},
methods: {
formatTimer,