mirror of https://gitlab.com/bashrc2/epicyon
Detecting email profile property
parent
f0607a03e1
commit
083dc32730
4
pgp.py
4
pgp.py
|
@ -57,7 +57,9 @@ def get_email_address(actor_json: {}) -> str:
|
|||
continue
|
||||
name_value_lower = name_value.lower()
|
||||
if 'email' not in name_value_lower:
|
||||
continue
|
||||
if 'e-mail' not in name_value_lower:
|
||||
if 'electronic mail' not in name_value_lower:
|
||||
continue
|
||||
if not property_value.get('type'):
|
||||
continue
|
||||
prop_value_name, _ = \
|
||||
|
|
Loading…
Reference in New Issue