diff --git a/modules/fediverse/ap_utils.py b/modules/fediverse/ap_utils.py index 5993e2b2..d21985df 100644 --- a/modules/fediverse/ap_utils.py +++ b/modules/fediverse/ap_utils.py @@ -77,9 +77,10 @@ def _normalise_note(content): lines = [] for element in soup.find_all(): if not element.name in KNOWN_TAGS: - element.unwrap() - elif element.text.strip() == "": - element.decompose() + if element.text.strip() == "": + element.decompose() + else: + element.unwrap() out = "" for element in soup.children: