From 27e7957e4169f44991c7bab5b726b2d611d70147 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 15 Feb 2022 18:10:36 +0000 Subject: [PATCH] Remove double slash --- pgp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pgp.py b/pgp.py index 817f93ef0..a18b87941 100644 --- a/pgp.py +++ b/pgp.py @@ -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: