mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 15:01:23 +01:00
Fix formatting string when oEmbed errors occur. (#11061)
This commit is contained in:
parent
333d6f4e84
commit
1db9282dfa
2 changed files with 2 additions and 1 deletions
1
changelog.d/11061.bugfix
Normal file
1
changelog.d/11061.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix a bug introduced in Synapse v1.44.0 when logging errors during oEmbed processing.
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue