mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 06:49:55 +02:00
Fix #608: Update Track.vue in order to use the correct search format on lyrics.wikia.com
This commit is contained in:
parent
c618748591
commit
856c49b4ae
2 changed files with 2 additions and 1 deletions
1
changes/changelog.d/608.bugfix
Normal file
1
changes/changelog.d/608.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fixed malformed search string when redirecting to LyricsWiki (#608)
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue