mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-07 00:16:57 +00:00
Don't assume that the event has a room_id or sender
This commit is contained in:
parent
9b6f3bc742
commit
4e05aab4f7
1 changed files with 2 additions and 2 deletions
|
@ -191,8 +191,8 @@ class Filter(object):
|
|||
)
|
||||
else:
|
||||
return self.check_fields(
|
||||
event.room_id,
|
||||
event.sender,
|
||||
getattr(event, "room_id", None),
|
||||
getattr(event, "sender", None),
|
||||
event.type,
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue