Fixed the fix to properly handle incomplete messages when there is nothing more to read.
This commit is contained in:
parent
938657be77
commit
899f76718f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Reference in a new issue