Add user profiles to summary from group server

This commit is contained in:
Erik Johnston 2017-08-25 16:23:58 +01:00
parent 258409ef61
commit 4a9b1cf253
3 changed files with 30 additions and 2 deletions

View file

@ -62,7 +62,7 @@ class ProfileStore(SQLBaseStore):
return self._simple_select_one(
table="remote_profile_cache",
keyvalues={"user_id": user_id},
retcols=("displayname", "avatar_url", "last_check"),
retcols=("displayname", "avatar_url",),
allow_none=True,
desc="get_from_remote_profile_cache",
)