summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-10-21 16:15:20 +0100
committerErik Johnston <erik@matrix.org>2020-10-21 16:53:40 +0100
commitd8902d4bd59bcecc46e595df5902385cf46c55d9 (patch)
treea152aa2fd9e6c672727df5f0fa28e33f0971b4df /synapse/rest
parentPrivacy policy applies to authenticated entity (diff)
downloadsynapse-d8902d4bd59bcecc46e595df5902385cf46c55d9.tar.xz
MAU limits are based off of the *authenticated* user
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/v2_alpha/sync.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py

index 2b84eb89c0..8e52e4cca4 100644 --- a/synapse/rest/client/v2_alpha/sync.py +++ b/synapse/rest/client/v2_alpha/sync.py
@@ -171,6 +171,7 @@ class SyncRestServlet(RestServlet): ) with context: sync_result = await self.sync_handler.wait_for_sync_for_user( + requester, sync_config, since_token=since_token, timeout=timeout,