From da3871681ae35ad7ee8ca7aac3b6aa30b543935d Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 9 Jan 2023 22:25:32 +0000 Subject: [PATCH] Unquote --- webfinger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webfinger.py b/webfinger.py index b4c8dc04a..b9686d387 100644 --- a/webfinger.py +++ b/webfinger.py @@ -260,6 +260,7 @@ def wellknown_protocol_handler(path: str, base_dir: str, return None if 'target=' in path: + path = urllib.parse.unquote(path) target = path.split('target=')[1] if ';' in target: target = target.split(';')[0]