From 11a9cea1a2d5236191e3c0053a0f2a3a34555053 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 2 Feb 2021 10:43:04 +0000 Subject: [PATCH] Unquote handle --- webfinger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webfinger.py b/webfinger.py index 45d247449..451aaaae4 100644 --- a/webfinger.py +++ b/webfinger.py @@ -221,6 +221,7 @@ def webfingerLookup(path: str, baseDir: str, handle = None if 'resource=acct:' in path: handle = path.split('resource=acct:')[1].strip() + handle = urllib.parse.unquote(handle) if debug: print('DEBUG: WEBFINGER handle ' + handle) else: