From c7c0efbd7be03dcf74c1004bf643a456afbf13ae Mon Sep 17 00:00:00 2001 From: dp Date: Tue, 16 Jun 2020 10:17:37 -0700 Subject: [PATCH] fix: use correct receiver name update market to quotes --- yahoo_quotes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yahoo_quotes.go b/yahoo_quotes.go index dd6ca08..c2523f6 100644 --- a/yahoo_quotes.go +++ b/yahoo_quotes.go @@ -74,7 +74,7 @@ func (quotes *Quotes) Fetch() (self *Quotes) { if err := recover(); err != nil { quotes.errors = fmt.Sprintf("\n\n\n\nError fetching stock quotes...\n%s", err) } else { - market.errors = "" + quotes.errors = "" } }()