undo off-by-one change

This commit is contained in:
glyph 2022-08-11 09:03:00 +01:00
parent 2c3f15e2da
commit 262cf40f44
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 + 1);
.after_seq(sequence_number);
sbot.create_history_stream(history_stream_args)
.await