fix off-by-one sequence bug
This commit is contained in:
parent
271665100a
commit
2c3f15e2da
@ -67,7 +67,7 @@ pub async fn get_message_stream(
|
|||||||
|
|
||||||
let history_stream_args = CreateHistoryStream::new(public_key.to_string())
|
let history_stream_args = CreateHistoryStream::new(public_key.to_string())
|
||||||
.keys_values(true, true)
|
.keys_values(true, true)
|
||||||
.after_seq(sequence_number);
|
.after_seq(sequence_number + 1);
|
||||||
|
|
||||||
sbot.create_history_stream(history_stream_args)
|
sbot.create_history_stream(history_stream_args)
|
||||||
.await
|
.await
|
||||||
|
Loading…
x
Reference in New Issue
Block a user