summary refs log tree commit diff
path: root/synapse/handlers/sync.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-10-01 15:07:33 +0100
committerRichard van der Hoff <richard@matrix.org>2020-10-01 15:07:33 +0100
commit8a8d01d732476b333d455583e39a43f2e3603b13 (patch)
tree0fc172389db743b5be38d3c43e42fae7d01fef76 /synapse/handlers/sync.py
parentRevert "Temporary fix to ensure kde can contact matrix.org if stuff breaks" (diff)
parentMerge tag 'v1.21.0rc1' into develop (diff)
downloadsynapse-8a8d01d732476b333d455583e39a43f2e3603b13.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r--synapse/handlers/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py

index 15a41c6617..30e2e05b64 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py
@@ -88,7 +88,7 @@ class SyncConfig: class TimelineBatch: prev_batch = attr.ib(type=StreamToken) events = attr.ib(type=List[EventBase]) - limited = attr.ib(bool) + limited = attr.ib(type=bool) def __bool__(self) -> bool: """Make the result appear empty if there are no updates. This is used