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
This commit is contained in:
commit
e97f1f0e0b
|
@ -0,0 +1 @@
|
||||||
|
Fixed malformed search string when redirecting to LyricsWiki (#608)
|
|
@ -228,7 +228,7 @@ export default {
|
||||||
},
|
},
|
||||||
lyricsSearchUrl() {
|
lyricsSearchUrl() {
|
||||||
let base = "http://lyrics.wikia.com/wiki/Special:Search?query="
|
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)
|
return base + encodeURI(query)
|
||||||
},
|
},
|
||||||
cover() {
|
cover() {
|
||||||
|
|
Loading…
Reference in New Issue