mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-10 05:59:45 -05:00
[web-src] Fix error following genre links (add missing url encoding of genre name in url)
This commit is contained in:
@@ -72,7 +72,7 @@ export default {
|
||||
methods: {
|
||||
open_tracks: function () {
|
||||
this.show_details_modal = false
|
||||
this.$router.push({ path: '/music/genres/' + this.name + '/tracks' })
|
||||
this.$router.push({ name: 'GenreTracks', params: { genre: this.name } })
|
||||
},
|
||||
|
||||
play: function () {
|
||||
|
||||
@@ -71,7 +71,7 @@ export default {
|
||||
methods: {
|
||||
open_genre: function () {
|
||||
this.show_details_modal = false
|
||||
this.$router.push({ path: '/music/genres/' + this.genre })
|
||||
this.$router.push({ name: 'Genre', params: { genre: this.genre } })
|
||||
},
|
||||
|
||||
play: function () {
|
||||
|
||||
Reference in New Issue
Block a user