Skip to content
Snippets Groups Projects
Commit e97f1f0e authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch 'patch-1' into 'develop'

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

Closes #608

See merge request funkwhale/funkwhale!483
parents c6187485 856c49b4
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