mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-12 04:52:26 +01:00
Sliding Sync: Fix limited
response description (make accurate) (#17507)
This commit is contained in:
parent
46de0ee16b
commit
1d6186265a
2 changed files with 3 additions and 2 deletions
1
changelog.d/17507.misc
Normal file
1
changelog.d/17507.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Update the `limited` field description in the Sliding Sync response to accurately describe what it actually represents.
|
|
@ -182,8 +182,8 @@ class SlidingSyncResult:
|
||||||
absent on joined/left rooms
|
absent on joined/left rooms
|
||||||
prev_batch: A token that can be passed as a start parameter to the
|
prev_batch: A token that can be passed as a start parameter to the
|
||||||
`/rooms/<room_id>/messages` API to retrieve earlier messages.
|
`/rooms/<room_id>/messages` API to retrieve earlier messages.
|
||||||
limited: True if their are more events than fit between the given position and now.
|
limited: True if there are more events than `timeline_limit` looking
|
||||||
Sync again to get more.
|
backwards from the `response.pos` to the `request.pos`.
|
||||||
num_live: The number of timeline events which have just occurred and are not historical.
|
num_live: The number of timeline events which have just occurred and are not historical.
|
||||||
The last N events are 'live' and should be treated as such. This is mostly
|
The last N events are 'live' and should be treated as such. This is mostly
|
||||||
useful to determine whether a given @mention event should make a noise or not.
|
useful to determine whether a given @mention event should make a noise or not.
|
||||||
|
|
Loading…
Reference in a new issue