mirror of https://gitlab.com/bashrc2/epicyon
Unquote handle
parent
b73c730d37
commit
11a9cea1a2
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue