Make it work. Warn about lack of user profile

This commit is contained in:
Luke Barnard 2017-10-16 15:50:39 +01:00
parent a3ac4f6b0a
commit c43e8a9736

View file

@ -443,10 +443,10 @@ class GroupsServerHandler(object):
"user_id": user_id
}
try:
profile = yield self.profile_handler.get_profile_from_cache(user)
profile = yield self.profile_handler.get_profile_from_cache(user_id)
user_profile.update(profile)
except Exception as e:
pass
logger.warn("Error getting profile for %s: %s", user_id, e)
user_profiles.append(user_profile)
defer.returnValue({