From d2a70a782b4de74ce6db3404a13cfe02b19077bb Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Thu, 21 Jan 2021 16:57:20 -0700 Subject: [PATCH] wtf haskell --- agent/src/Lib/Tor.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/src/Lib/Tor.hs b/agent/src/Lib/Tor.hs index cf1e864da..8f5f5da27 100644 --- a/agent/src/Lib/Tor.hs +++ b/agent/src/Lib/Tor.hs @@ -21,4 +21,4 @@ getAgentHiddenServiceUrlMaybe = fmap T.strip <$> readSystemPath agentTorHiddenSe -- | 'newTorManager' currently assumes the tor client lives on the localhost. The port comes in over an argument. -- If this is insufficient in the future, feel free to parameterize the host. newTorManager :: Word16 -> IO Manager -newTorManager = newTlsManagerWith . mkManagerSettings def . Just . SockSettingsSimple "127.0.0.1" . fromIntegral +newTorManager = newManager . mkManagerSettings def . Just . SockSettingsSimple "127.0.0.1" . fromIntegral