mirror of https://gitlab.com/bashrc2/epicyon
vcard profile
parent
95d39beb18
commit
aa4b2e760e
2
pgp.py
2
pgp.py
|
@ -638,7 +638,7 @@ def actor_to_vcard(actor: {}) -> str:
|
||||||
vcard_str += 'REV:' + actor['published'] + '\n'
|
vcard_str += 'REV:' + actor['published'] + '\n'
|
||||||
vcard_str += 'FN:' + remove_html(actor['name']) + '\n'
|
vcard_str += 'FN:' + remove_html(actor['name']) + '\n'
|
||||||
vcard_str += 'NICKNAME:' + actor['preferredUsername'] + '\n'
|
vcard_str += 'NICKNAME:' + actor['preferredUsername'] + '\n'
|
||||||
vcard_str += 'URL:' + actor['url'] + '\n'
|
vcard_str += 'URL:profile:' + actor['url'] + '\n'
|
||||||
blog_address = get_blog_address(actor)
|
blog_address = get_blog_address(actor)
|
||||||
if blog_address:
|
if blog_address:
|
||||||
vcard_str += 'URL:blog:' + blog_address + '\n'
|
vcard_str += 'URL:blog:' + blog_address + '\n'
|
||||||
|
|
Loading…
Reference in New Issue