mirror of https://gitlab.com/bashrc2/epicyon
Strip handle
parent
498d903511
commit
f3e0d4e17c
|
@ -50,8 +50,9 @@ def createInitialLastSeen(baseDir: str, httpPrefix: str) -> None:
|
|||
continue
|
||||
if '@' not in handle:
|
||||
continue
|
||||
handle = handle.strip()
|
||||
nickname = handle.split('@')[0]
|
||||
domain = handle.split('@')[1].strip()
|
||||
domain = handle.split('@')[1]
|
||||
actor = \
|
||||
httpPrefix + '://' + \
|
||||
nickname + '@' + domain + '/users/' + nickname
|
||||
|
|
Loading…
Reference in New Issue