fix off-by-one sequence bug

This commit is contained in:
glyph 2022-08-11 08:59:33 +01:00
parent 271665100a
commit 2c3f15e2da
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ pub async fn get_message_stream(
let history_stream_args = CreateHistoryStream::new(public_key.to_string())
.keys_values(true, true)
.after_seq(sequence_number);
.after_seq(sequence_number + 1);
sbot.create_history_stream(history_stream_args)
.await