More debug

merge-requests/8/head
Bob Mottram 2020-12-18 17:08:35 +00:00
parent ddaa94146f
commit 22f7f57b74
1 changed files with 6 additions and 1 deletions

View File

@ -142,7 +142,12 @@ def cleanHtml(rawHtml: str) -> str:
def getUserUrl(wfRequest: {}) -> str:
"""Gets the actor url from a webfinger request
"""
print('getUserUrl: ' + str(wfRequest))
if not wfRequest.get('links'):
print('getUserUrl webfinger activity+json contains no links ' +
str(wfRequest))
return None
for link in wfRequest['links']:
if not (link.get('type') and link.get('href')):
@ -153,7 +158,7 @@ def getUserUrl(wfRequest: {}) -> str:
'/accounts/' in link['href'] or
'/profile/' in link['href'] or
'/channel/' in link['href']):
print('Webfinger activity+json ' +
print('getUserUrl webfinger activity+json ' +
'contains single user instance actor ' +
str(link))
return link['href']