Skip to content
Snippets Groups Projects
Unverified Commit 250f3eb9 authored by Aaron's avatar Aaron Committed by GitHub
Browse files

Omit displayname or avatar_url if they aren't set instead of returning null (#7497)

Per https://github.com/matrix-org/matrix-doc/issues/1436#issuecomment-410089470 they should be omitted instead of returning null or "". They aren't marked as required in the spec.

Fixes https://github.com/matrix-org/synapse/issues/7333



Signed-off-by: default avatarAaron Raimist <aaron@raim.ist>
parent ee421e52
No related branches found
No related tags found
No related merge requests found
When sending `m.room.member` events, omit `displayname` and `avatar_url` if they aren't set instead of setting them to `null`. Contributed by Aaron Raimist.
...@@ -484,9 +484,13 @@ class EventCreationHandler(object): ...@@ -484,9 +484,13 @@ class EventCreationHandler(object):
try: try:
if "displayname" not in content: if "displayname" not in content:
content["displayname"] = yield profile.get_displayname(target) displayname = yield profile.get_displayname(target)
if displayname is not None:
content["displayname"] = displayname
if "avatar_url" not in content: if "avatar_url" not in content:
content["avatar_url"] = yield profile.get_avatar_url(target) avatar_url = yield profile.get_avatar_url(target)
if avatar_url is not None:
content["avatar_url"] = avatar_url
except Exception as e: except Exception as e:
logger.info( logger.info(
"Failed to get profile information for %r: %s", target, e "Failed to get profile information for %r: %s", target, e
......
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