Skip to content
Snippets Groups Projects
Commit f75b9961 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Reinstate missing null check

parent c1ae6b1b
No related branches found
No related tags found
No related merge requests found
...@@ -333,7 +333,7 @@ class DirectoryHandler(BaseHandler): ...@@ -333,7 +333,7 @@ class DirectoryHandler(BaseHandler):
def _user_can_delete_alias(self, alias, user_id): def _user_can_delete_alias(self, alias, user_id):
creator = yield self.store.get_room_alias_creator(alias.to_string()) creator = yield self.store.get_room_alias_creator(alias.to_string())
if creator == user_id: if creator is not None and creator == user_id:
defer.returnValue(True) defer.returnValue(True)
is_admin = yield self.auth.is_server_admin(UserID.from_string(user_id)) is_admin = yield self.auth.is_server_admin(UserID.from_string(user_id))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment