If the result of getmessages is something like this:
channel: foo
message: a
channel: foo
message: b
Only message "b" will be processed. get_messages assumes, incorrectly, that they will be batched:
channel: foo
message: a
message: b
Which is not what I'm seeing in the field.
If the result of getmessages is something like this:
Only message "b" will be processed.
get_messagesassumes, incorrectly, that they will be batched:Which is not what I'm seeing in the field.