Add m.room.member type to query
This commit is contained in:
parent
88a4d54883
commit
f6124311fd
|
@ -266,7 +266,7 @@ class RoomMemberStore(SQLBaseStore):
|
|||
" ON m.event_id = c.event_id "
|
||||
" AND m.room_id = c.room_id "
|
||||
" AND m.user_id = c.state_key"
|
||||
" WHERE %(where)s"
|
||||
" WHERE c.type = 'm.room.member' AND %(where)s"
|
||||
) % {
|
||||
"where": where_clause,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue