mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-18 06:34:20 -05:00
Make it work. Warn about lack of user profile
This commit is contained in:
parent
a3ac4f6b0a
commit
c43e8a9736
@ -443,10 +443,10 @@ class GroupsServerHandler(object):
|
|||||||
"user_id": user_id
|
"user_id": user_id
|
||||||
}
|
}
|
||||||
try:
|
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)
|
user_profile.update(profile)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
pass
|
logger.warn("Error getting profile for %s: %s", user_id, e)
|
||||||
user_profiles.append(user_profile)
|
user_profiles.append(user_profile)
|
||||||
|
|
||||||
defer.returnValue({
|
defer.returnValue({
|
||||||
|
Loading…
Reference in New Issue
Block a user