We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 522d9b1 commit 95cc3f1Copy full SHA for 95cc3f1
dendrite/sync_api/_core/_utils.py
@@ -32,7 +32,11 @@ def expand_iframes(
32
if iframe_path:
33
new_iframe_path = f"{iframe_path}|"
34
new_iframe_path = f"{new_iframe_path}{iframe_id}"
35
- content_frame = iframe.content_frame()
+ try:
36
+ content_frame = iframe.content_frame()
37
+ except Exception as e:
38
+ logger.debug(f"Error getting content frame for iframe {iframe_id}: {e}")
39
+ continue
40
if content_frame is None:
41
continue
42
content_frame.evaluate(
0 commit comments