mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 12:23:48 +01:00
Fix returning incorrect prev_batch token in incremental sync (#8486)
This commit is contained in:
parent
d373ec2f72
commit
9ca6341969
2 changed files with 7 additions and 1 deletions
1
changelog.d/8486.bugfix
Normal file
1
changelog.d/8486.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix incremental sync returning an incorrect `prev_batch` token in timeline section, which when used to paginate returned events that were included in the incremental sync. Broken since v0.16.0.
|
|
@ -460,8 +460,13 @@ class SyncHandler:
|
||||||
recents = []
|
recents = []
|
||||||
|
|
||||||
if not limited or block_all_timeline:
|
if not limited or block_all_timeline:
|
||||||
|
prev_batch_token = now_token
|
||||||
|
if recents:
|
||||||
|
room_key = recents[0].internal_metadata.before
|
||||||
|
prev_batch_token = now_token.copy_and_replace("room_key", room_key)
|
||||||
|
|
||||||
return TimelineBatch(
|
return TimelineBatch(
|
||||||
events=recents, prev_batch=now_token, limited=False
|
events=recents, prev_batch=prev_batch_token, limited=False
|
||||||
)
|
)
|
||||||
|
|
||||||
filtering_factor = 2
|
filtering_factor = 2
|
||||||
|
|
Loading…
Reference in a new issue