From 03756cafb33346abedf44336c99c592af1155daa Mon Sep 17 00:00:00 2001 From: Mikhail Klementyev Date: Tue, 2 Aug 2016 22:42:39 +0300 Subject: [PATCH] Use https for google search --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1bddb79..2bb6bb1 100644 --- a/main.go +++ b/main.go @@ -76,6 +76,6 @@ func main() { commands.History(db, *historyListItems, 20, *historyListAll) case "search": // FIXME: currenlty supports only Google - commands.Get(db, "google.com/search?q="+strings.Join(*searchArgs, "+")) + commands.Get(db, "https://google.com/search?q="+strings.Join(*searchArgs, "+")) } }