diff options
author | Eric Eastwood <eric.eastwood@beta.gouv.fr> | 2024-07-31 11:47:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 11:47:26 -0500 |
commit | 1d6186265ad0715fb2e12d8b5b5dbeceedfbb86f (patch) | |
tree | cb118f767da41603b0435716181c14abdb31da66 /synapse | |
parent | Sliding Sync: Update filters to be robust against remote invite rooms (#17450) (diff) | |
download | synapse-1d6186265ad0715fb2e12d8b5b5dbeceedfbb86f.tar.xz |
Sliding Sync: Fix `limited` response description (make accurate) (#17507)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/types/handlers/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/types/handlers/__init__.py b/synapse/types/handlers/__init__.py index 2f7e92665c..a6adf6c9ea 100644 --- a/synapse/types/handlers/__init__.py +++ b/synapse/types/handlers/__init__.py @@ -182,8 +182,8 @@ class SlidingSyncResult: absent on joined/left rooms prev_batch: A token that can be passed as a start parameter to the `/rooms/<room_id>/messages` API to retrieve earlier messages. - limited: True if their are more events than fit between the given position and now. - Sync again to get more. + limited: True if there are more events than `timeline_limit` looking + backwards from the `response.pos` to the `request.pos`. 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 useful to determine whether a given @mention event should make a noise or not. |