redirect empty searches to duck duck go

pull/9/head
Adam Veldhousen 4 years ago
parent 7133ac2f98
commit 5eb73b41e7
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B

@ -53,6 +53,11 @@ func searchHandler(scs *CommandHandler, shortcutStore *ShortcutStore, logAccess
v := req.URL.Query()
commandString := v.Get("q")
if commandString == "" {
http.Redirect(res, req, "https://duckduckgo.com", http.StatusFound)
return
}
action, err := scs.Handle(commandString)
if err != nil {
if logAccess {

Loading…
Cancel
Save