Skip to content
Snippets Groups Projects
Unverified Commit b3e5db40 authored by Katie Wolfe's avatar Katie Wolfe
Browse files

Clean up code


Signed-off-by: default avatarKatie Wolfe <katie@dnaf.moe>
parent 5d3ed799
No related branches found
No related tags found
No related merge requests found
...@@ -587,14 +587,15 @@ class SyncHandler(object): ...@@ -587,14 +587,15 @@ class SyncHandler(object):
# for the "name" value and default to an empty string. # for the "name" value and default to an empty string.
if name_id: if name_id:
name = yield self.store.get_event(name_id, allow_none=True) name = yield self.store.get_event(name_id, allow_none=True)
if name and name.content and "name" in name.content and name.content.get("name", ""): if name and name.content and name.content.get("name", ""):
defer.returnValue(summary) defer.returnValue(summary)
if canonical_alias_id: if canonical_alias_id:
canonical_alias = yield self.store.get_event( canonical_alias = yield self.store.get_event(
canonical_alias_id, allow_none=True, canonical_alias_id, allow_none=True,
) )
if canonical_alias and canonical_alias.content and canonical_alias.content.get("alias", ""): if (canonical_alias and canonical_alias.content
and canonical_alias.content.get("alias", "")):
defer.returnValue(summary) defer.returnValue(summary)
joined_user_ids = [ joined_user_ids = [
......
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