diff --git a/modules/cryptoexchanges/cryptolive/price/widget.go b/modules/cryptoexchanges/cryptolive/price/widget.go index 229d55ef..5c502a45 100644 --- a/modules/cryptoexchanges/cryptolive/price/widget.go +++ b/modules/cryptoexchanges/cryptolive/price/widget.go @@ -137,7 +137,7 @@ func makeRequest(currency *fromCurrency) *http.Request { tsyms += fmt.Sprintf("%s,", to.name) } - url := fmt.Sprintf("%s?fsym=%s&tsyms=%s", baseURL, currency.name, "") + url := fmt.Sprintf("%s?fsym=%s&tsyms=%s", baseURL, currency.name, tsyms) request, _ := http.NewRequest("GET", url, nil) return request