From 2f5cbfd70c32f7d6c3b2f354e676f916dcdde5af Mon Sep 17 00:00:00 2001 From: Brandon Lee Camilleri Date: Sun, 15 Sep 2019 11:04:42 +0200 Subject: [PATCH] Update cnn_market.go using https instead of http just as is the case with Yahoo! --- cnn_market.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cnn_market.go b/cnn_market.go index 4a76bc9..2d444a2 100644 --- a/cnn_market.go +++ b/cnn_market.go @@ -13,7 +13,7 @@ import ( `strings` ) -const marketURL = `http://money.cnn.com/data/markets/` +const marketURL = `https://money.cnn.com/data/markets/` // Market stores current market information displayed in the top three lines of // the screen. The market data is fetched and parsed from the HTML page above.