Archived
1
0
Fork 0

Temporary fix for the parsing mistake when not using TLS

This commit is contained in:
Julien Dessaux 2011-11-07 23:03:53 +01:00
parent 899f76718f
commit fca73a28e3

View file

@ -136,7 +136,7 @@ botReader env handle mctx chan = do
Nothing -> return ()
readThis :: Handle -> Maybe (TLSCtx Handle) -> IO String
readThis _ (Just ctx) = fmap L.toString (recvData ctx)
readThis h Nothing = hGetLine h
readThis h Nothing = hGetLine h >>= \s -> return $ s ++ "\n"
botLoop :: Env IO ()
botLoop = forever $ do