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