X-Git-Url: https://git.martlubbers.net/?p=cloogle-irc.git;a=blobdiff_plain;f=cloogleirc.icl;h=c9a464e0b307bdf8a09ecc7a0fde07af0d5555d9;hp=0fc25f9b2d06eab2460ddaef63d41c8abf024514;hb=f1a57a23147ae704503cca0053ec7bd371360948;hpb=ad6f64c9f6b343f0e64eff1d3d7fa821cff203b0 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)