mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-05 05:47:37 +03:00
fix: escape query on search
This commit is contained in:
parent
b97a09da37
commit
7a5a8392c7
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
)
|
)
|
||||||
|
|
||||||
type response struct {
|
type response struct {
|
||||||
|
@ -35,7 +36,7 @@ type renderVars struct {
|
||||||
|
|
||||||
func searchHandler(w http.ResponseWriter, r *http.Request) {
|
func searchHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
query := r.URL.Query().Get("q")
|
query := r.URL.Query().Get("q")
|
||||||
url := fmt.Sprintf(`https://genius.com/api/search/multi?q=%s`, query)
|
url := fmt.Sprintf(`https://genius.com/api/search/multi?q=%s`, url.QueryEscape(query))
|
||||||
|
|
||||||
res, err := sendRequest(url)
|
res, err := sendRequest(url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue