mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-29 17:11:13 -04:00
Merge pull request #3997 from matrix-org/erikj/fix_profile_error_handling
Fix exception handling in fetching remote profiles
This commit is contained in:
commit
01afcfc4e9
2 changed files with 3 additions and 6 deletions
1
changelog.d/3997.bugfix
Normal file
1
changelog.d/3997.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix exception handling in fetching remote profiles
|
|
@ -142,9 +142,7 @@ class BaseProfileHandler(BaseHandler):
|
|||
if e.code != 404:
|
||||
logger.exception("Failed to get displayname")
|
||||
raise
|
||||
except Exception:
|
||||
logger.exception("Failed to get displayname")
|
||||
else:
|
||||
|
||||
defer.returnValue(result["displayname"])
|
||||
|
||||
@defer.inlineCallbacks
|
||||
|
@ -199,8 +197,6 @@ class BaseProfileHandler(BaseHandler):
|
|||
if e.code != 404:
|
||||
logger.exception("Failed to get avatar_url")
|
||||
raise
|
||||
except Exception:
|
||||
logger.exception("Failed to get avatar_url")
|
||||
|
||||
defer.returnValue(result["avatar_url"])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue