fix: 🐛 fix forgotten player pinia trasition

This commit is contained in:
Michel Roux 2024-08-11 21:48:13 +02:00
parent 5f528e6b9b
commit caf0bb7ec0
1 changed files with 2 additions and 2 deletions

View File

@ -38,9 +38,9 @@ export default {
}
},
computed: {
...mapState(usePlayer, ['episode']),
...mapState(usePlayer, ['episode', 'podcastUrl']),
hash() {
return toUrl(this.player.podcastUrl)
return toUrl(this.podcastUrl)
},
},
}