Compare commits

...

4 commits

Author SHA1 Message Date
Matthew Hodgson 56a40a48ec changelog 2018-09-19 16:21:15 +01:00
Matthew Hodgson 23940197ea Merge branch 'develop' into matthew/lazy_load_yourself 2018-09-19 16:06:06 +01:00
Matthew Hodgson 9d119ddd7d Merge branch 'develop' into matthew/lazy_load_yourself 2018-08-22 12:06:42 +02:00
Matthew Hodgson 78cc026a37 always LL ourselves if we're in a room, otherwise it looks like we're not.
Should fix https://github.com/vector-im/riot-web/issues/7209
2018-08-22 11:53:48 +02:00
2 changed files with 5 additions and 0 deletions

1
changelog.d/3916.feature Normal file
View file

@ -0,0 +1 @@
Always LL ourselves if we're in a room

View file

@ -713,6 +713,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]