summary refs log tree commit diff
path: root/synapse/handlers/sync.py
diff options
context:
space:
mode:
authorMichael Kaye <1917473+michaelkaye@users.noreply.github.com>2018-09-24 11:20:10 +0100
committerMichael Kaye <1917473+michaelkaye@users.noreply.github.com>2018-09-24 11:20:10 +0100
commit128043072b8220cd1405d12d3bf5afeaffcbce16 (patch)
tree8155578c8327c6869a95c09a752ca922577ab19b /synapse/handlers/sync.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentMerge pull request #3927 from matrix-org/erikj/handle_background_errors (diff)
downloadsynapse-128043072b8220cd1405d12d3bf5afeaffcbce16.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r--synapse/handlers/sync.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py

index 456eaf86cb..5d96ee799d 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py
@@ -717,6 +717,10 @@ class SyncHandler(object): ) ] + # always make sure we LL ourselves so we know we're in the room + # (if we are), to fix https://github.com/vector-im/riot-web/issues/7209 + types.append((EventTypes.Member, sync_config.user.to_string())) + # only apply the filtering to room members filtered_types = [EventTypes.Member]