Clean up direct_rooms access

pull/4412/head
Andrew Morgan 2019-01-25 11:37:12 +00:00
parent 8265995498
commit da0d2219d2
1 changed files with 3 additions and 3 deletions

View File

@ -267,10 +267,10 @@ class RoomMemberHandler(object):
)
# Copy direct message state if applicable
if user_account_data and "m.direct" in user_account_data:
direct_rooms = user_account_data["m.direct"]
direct_rooms = user_account_data.get("m.direct", {})
# Check which key this room is under
# Check which key this room is under
if isinstance(direct_rooms, dict):
for key, room_id_list in direct_rooms.items():
if old_room_id in room_id_list and new_room_id not in room_id_list:
# Add new room_id to this key