Skip to content
Snippets Groups Projects
Unverified Commit 9a5ea511 authored by Amber Brown's avatar Amber Brown Committed by GitHub
Browse files

Merge pull request #3810 from matrix-org/erikj/send_tags_down_sync_on_join

Send existing room tags down sync on join
parents e33a538a 7298efd3
No related branches found
No related tags found
No related merge requests found
Fix existing room tags not coming down sync when joining a room
......@@ -1575,6 +1575,19 @@ class SyncHandler(object):
newly_joined_room=newly_joined,
)
# When we join the room (or the client requests full_state), we should
# send down any existing tags. Usually the user won't have tags in a
# newly joined room, unless either a) they've joined before or b) the
# tag was added by synapse e.g. for server notice rooms.
if full_state:
user_id = sync_result_builder.sync_config.user.to_string()
tags = yield self.store.get_tags_for_room(user_id, room_id)
# If there aren't any tags, don't send the empty tags list down
# sync
if not tags:
tags = None
account_data_events = []
if tags is not None:
account_data_events.append({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment