Check canonical alias event exists
parent
2cd9260500
commit
56aa4e7a9a
|
@ -257,7 +257,8 @@ class DirectoryHandler(BaseHandler):
|
||||||
room_id, EventTypes.CanonicalAlias, ""
|
room_id, EventTypes.CanonicalAlias, ""
|
||||||
)
|
)
|
||||||
|
|
||||||
if alias_event.content.get("alias", "") != room_alias.to_string():
|
alias_str = room_alias.to_string()
|
||||||
|
if not alias_event or alias_event.content.get("alias", "") != alias_str:
|
||||||
return
|
return
|
||||||
|
|
||||||
msg_handler = self.hs.get_handlers().message_handler
|
msg_handler = self.hs.get_handlers().message_handler
|
||||||
|
|
Loading…
Reference in New Issue