Archived
1
0
Fork 0

Fixed the fix to properly handle incomplete messages when there is nothing more to read.

This commit is contained in:
Julien Dessaux 2011-11-03 22:22:20 +01:00
parent 938657be77
commit 899f76718f

View file

@ -120,7 +120,7 @@ botReader env handle mctx chan = do
errorM "Hsbot.Reader" $ "Reader decode error (" ++ show err ++ ") on " ++ str
botTrueReader ""
messages = do
msgs <- many1 message
msgs <- option [] $ many1 message
trash <- option "" $ many1 anyChar
return (msgs, trash)
message = do