mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fix: encode query
This commit is contained in:
parent
29de1c0731
commit
07c1b8e986
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ export default {
|
||||||
"&id=" +
|
"&id=" +
|
||||||
encodeURIComponent(this.results.id) +
|
encodeURIComponent(this.results.id) +
|
||||||
"&q=" +
|
"&q=" +
|
||||||
this.$route.params.search_query
|
encodeURIComponent(this.$route.params.search_query)
|
||||||
)
|
)
|
||||||
.then(body => body.json())
|
.then(body => body.json())
|
||||||
.then(json => {
|
.then(json => {
|
||||||
|
|
Loading…
Reference in a new issue