kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Fix #608: Update Track.vue in order to use the correct search format on lyrics.wikia.com
rodzic
c618748591
commit
856c49b4ae
|
@ -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() {
|
||||
|
|
Ładowanie…
Reference in New Issue