forked from indymedia/epicyon
Use actor if webfinger fails
parent
2f716975e4
commit
dd82f0b7c3
|
@ -3166,8 +3166,13 @@ def htmlProfileAfterSearch(translate: {}, \
|
||||||
if debug:
|
if debug:
|
||||||
print('DEBUG: Unable to webfinger '+searchNickname+'@'+searchDomainFull)
|
print('DEBUG: Unable to webfinger '+searchNickname+'@'+searchDomainFull)
|
||||||
return None
|
return None
|
||||||
|
personUrl=None
|
||||||
|
if wf.get('errors'):
|
||||||
|
personUrl=httpPrefix+'://'+searchDomainFull+'/users/'+searchNickname
|
||||||
|
|
||||||
asHeader = {'Accept': 'application/activity+json; profile="https://www.w3.org/ns/activitystreams"'}
|
asHeader = {'Accept': 'application/activity+json; profile="https://www.w3.org/ns/activitystreams"'}
|
||||||
personUrl = getUserUrl(wf)
|
if not personUrl:
|
||||||
|
personUrl = getUserUrl(wf)
|
||||||
if not personUrl:
|
if not personUrl:
|
||||||
if debug:
|
if debug:
|
||||||
print('DEBUG: Webfinger did not return an actor url')
|
print('DEBUG: Webfinger did not return an actor url')
|
||||||
|
|
Loading…
Reference in New Issue