From 496bd0ac0409385ddca5939b72bdc881390e9a39 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 12 Aug 2024 13:32:26 +0100 Subject: [PATCH] Social profile on vcard --- pgp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgp.py b/pgp.py index 0f7a89319..8bdadfc8b 100644 --- a/pgp.py +++ b/pgp.py @@ -740,6 +740,7 @@ def actor_to_vcard(actor: {}, domain: str) -> str: pronouns = get_pronouns(actor) if pronouns: vcard_str += 'PRONOUNS:' + pronouns + '\n' + vcard_str += 'SOCIALPROFILE;SERVICE-TYPE=Mastodon:' + actor['url'] + '\n' xmpp_address = get_xmpp_address(actor) if xmpp_address: vcard_str += 'IMPP:xmpp:' + xmpp_address + '\n'