Fix formatting string when oEmbed errors occur. (#11061)

This commit is contained in:
Patrick Cloke 2021-10-12 13:15:42 -04:00 committed by GitHub
parent 333d6f4e84
commit 1db9282dfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/11061.bugfix Normal file
View file

@ -0,0 +1 @@
Fix a bug introduced in Synapse v1.44.0 when logging errors during oEmbed processing.

View file

@ -191,7 +191,7 @@ class OEmbedProvider:
except Exception as e:
# Trap any exception and let the code follow as usual.
logger.warning(f"Error parsing oEmbed metadata from {url}: {e:r}")
logger.warning("Error parsing oEmbed metadata from %s: %r", url, e)
open_graph_response = {}
cache_age = None