From: Camil Staps Date: Tue, 12 Sep 2017 20:38:13 +0000 (+0200) Subject: Better no results response (resolves #3) X-Git-Url: https://git.martlubbers.net/?p=cloogle-irc.git;a=commitdiff_plain;h=f1a57a23147ae704503cca0053ec7bd371360948;hp=ad6f64c9f6b343f0e64eff1d3d7fa821cff203b0 Better no results response (resolves #3) --- diff --git a/cloogleirc.icl b/cloogleirc.icl index 0fc25f9..c9a464e 100644 --- a/cloogleirc.icl +++ b/cloogleirc.icl @@ -56,7 +56,7 @@ shorten s w cloogle :: String *World -> (String, *World) cloogle data w -# (mer, w) = doHTTPRequestL +# (mer, w) = doHTTPRequestFollowRedirects { newHTTPRequest & req_path = "/api.php" , req_query = "?str=" + urlEncode data @@ -67,6 +67,7 @@ cloogle data w # resp = fromOk mer = case fromJSON $ fromString resp.HTTPResponse.rsp_data of Nothing = ("couldn't parse json", w) + Just {return=127} = ("No results for " + data, w) Just clr = ("Results for " + data + " -- https://cloogle.org/#" + replaceSubString "+" "%20" (urlEncode data) + "\n" + processResults clr, w)