Fix #608: Update Track.vue in order to use the correct search format on lyrics.wikia.com

merge-requests/552/head
Von 2018-12-04 09:09:58 +00:00 zatwierdzone przez Eliot Berriot
rodzic c618748591
commit 856c49b4ae
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -0,0 +1 @@
Fixed malformed search string when redirecting to LyricsWiki (#608)

Wyświetl plik

@ -228,7 +228,7 @@ export default {
},
lyricsSearchUrl() {
let base = "http://lyrics.wikia.com/wiki/Special:Search?query="
let query = this.track.artist.name + " " + this.track.title
let query = this.track.artist.name + ":" + this.track.title
return base + encodeURI(query)
},
cover() {