From 13291da6911cffb0c44ad4038f5ff62fc9c5f33e Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Wed, 7 May 2025 12:16:55 -0600 Subject: [PATCH] fix double slash in URL --- providers/staticjsonYahooFinance/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/staticjsonYahooFinance/client.go b/providers/staticjsonYahooFinance/client.go index 760c9a5..fd0085a 100644 --- a/providers/staticjsonYahooFinance/client.go +++ b/providers/staticjsonYahooFinance/client.go @@ -9,7 +9,7 @@ import ( "time" ) -const apiBaseURL = "https://query1.finance.yahoo.com/v8/finance/" +const apiBaseURL = "https://query1.finance.yahoo.com/v8/finance" // A client is the structure that will be used to consume the API // endpoints. It holds the login credentials, http client/transport,