Skip to content

Commit ad6fd47

Browse files
authored
Merge pull request purescript#2465 from purescript/phil/2074
Use HTTPS to query Pursuit
2 parents 1e60728 + 642f939 commit ad6fd47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Language/PureScript/Ide/Pursuit.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import qualified Pipes.Prelude as P
3636
queryPursuit :: Text -> IO ByteString
3737
queryPursuit q = do
3838
let qClean = T.dropWhileEnd (== '.') q
39-
req' <- parseRequest "http://pursuit.purescript.org/search"
39+
req' <- parseRequest "https://pursuit.purescript.org/search"
4040
let req = req'
4141
{ queryString= "q=" <> (fromString . T.unpack) qClean
4242
, requestHeaders=[(hAccept, "application/json")]

0 commit comments

Comments
 (0)