Fix missing profile data in federation joins

There was a regression where we stopped including profile data in
initial joins for rooms joined over federation.
This commit is contained in:
Erik Johnston 2015-11-12 16:19:55 +00:00
parent 78f6010207
commit c0b3554401
3 changed files with 13 additions and 6 deletions

View file

@ -504,7 +504,8 @@ class RoomMemberHandler(BaseHandler):
yield handler.do_invite_join(
room_hosts,
room_id,
event.user_id
event.user_id,
event.content,
)
else:
logger.debug("Doing normal join")