Remove html sooner

main
Bob Mottram 2024-08-15 23:16:53 +01:00
parent f22d493cb2
commit 252b27c553
1 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,7 @@ def get_xmpp_address(actor_json: {}) -> str:
if not property_value['type'].endswith('PropertyValue') and \ if not property_value['type'].endswith('PropertyValue') and \
not property_value['type'] == 'Link': not property_value['type'] == 'Link':
continue continue
address_text = property_value[prop_value_name] address_text = remove_html(property_value[prop_value_name])
if 'matrix' in address_text.lower(): if 'matrix' in address_text.lower():
continue continue
if '@' not in address_text: if '@' not in address_text:
@ -51,7 +51,9 @@ def get_xmpp_address(actor_json: {}) -> str:
continue continue
if address_text.startswith('xmpp://'): if address_text.startswith('xmpp://'):
address_text = address_text.split('xmpp://', 1)[1] address_text = address_text.split('xmpp://', 1)[1]
return remove_html(address_text) elif address_text.startswith('xmpp:'):
address_text = address_text.split('xmpp:', 1)[1]
return address_text
return '' return ''