diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 150d492cb021627b8580fff1c7a7ef781ec663df..7eed2fcc9bb4b38602ddecfeef8c9187349ae4b7 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -1583,6 +1583,11 @@ class SyncHandler(object): 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({