Skip to content
Snippets Groups Projects
Commit 856c49b4 authored by Von's avatar Von Committed by Eliot Berriot
Browse files

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

parent c6187485
No related branches found
No related tags found
No related merge requests found
Fixed malformed search string when redirecting to LyricsWiki (#608)
\ No newline at end of file
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment