We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0887cbd commit 55de690Copy full SHA for 55de690
dendrite/async_api/_core/_utils.py
@@ -40,7 +40,12 @@ async def expand_iframes(
40
new_iframe_path = f"{iframe_path}|"
41
new_iframe_path = f"{new_iframe_path}{iframe_id}"
42
43
- content_frame = await iframe.content_frame()
+ try:
44
+ content_frame = await iframe.content_frame()
45
+ except Exception as e:
46
+ logger.debug(f"Error getting content frame for iframe {iframe_id}: {e}")
47
+ continue
48
+
49
if content_frame is None:
50
continue
51
0 commit comments