forked from MirrorHub/synapse
Simplify condition
This commit is contained in:
parent
40596aec0e
commit
0a2f522644
1 changed files with 2 additions and 3 deletions
|
@ -587,15 +587,14 @@ 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.content.get("name", ""):
|
if name 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
|
if canonical_alias and canonical_alias.content.get("alias", ""):
|
||||||
and canonical_alias.content.get("alias", "")):
|
|
||||||
defer.returnValue(summary)
|
defer.returnValue(summary)
|
||||||
|
|
||||||
joined_user_ids = [
|
joined_user_ids = [
|
||||||
|
|
Loading…
Reference in a new issue