Remove double slash

merge-requests/30/head
Bob Mottram 2022-02-15 18:10:36 +00:00
parent 7e19791643
commit 27e7957e41
1 changed files with 2 additions and 2 deletions

4
pgp.py
View File

@ -663,8 +663,8 @@ def actor_to_vcard(actor: {}) -> str:
vcard_str += 'IMPP:matrix:' + matrix_address + '\n'
briar_address = get_briar_address(actor)
if briar_address:
if briar_address.startswith('briar:'):
briar_address = briar_address.split('briar:')[1]
if briar_address.startswith('briar://'):
briar_address = briar_address.split('briar://')[1]
vcard_str += 'IMPP:briar:' + briar_address + '\n'
cwtch_address = get_cwtch_address(actor)
if cwtch_address: