[web] Use named route for the podcasts page

Switching to named routes in order to reduce future maintenance.
This commit is contained in:
Alain Nussbaumer
2023-07-10 13:09:27 +02:00
parent f09647d754
commit 44d488467e
3 changed files with 9 additions and 9 deletions

View File

@@ -139,7 +139,7 @@ export default {
webapi
.library_playlist_delete(this.rss_playlist_to_remove.id)
.then(() => {
this.$router.replace({ path: '/podcasts' })
this.$router.replace({ name: 'podcasts' })
})
},