Extra emoji

master
Bob Mottram 2019-08-22 22:45:00 +01:00
parent fc01d82998
commit 9c137b0560
3 changed files with 21 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -523,5 +523,7 @@
"temperature": "1F321",
"restart": "1F504",
"key": "1F511",
"security": "1F510"
"security": "1F510",
"bookchin": "1F9EC",
"murraybookchin": "1F9EC"
}

View File

@ -816,8 +816,24 @@ if args.actor:
httpPrefix='https'
port=443
session = createSession(domain,port,useTor)
wfRequest = webfingerHandle(session,nickname+'@'+domain,httpPrefix,wfCache, \
domain,__version__)
if nickname!='inbox':
wfRequest = webfingerHandle(session,nickname+'@'+domain,httpPrefix,wfCache, \
domain,__version__)
else:
wfRequest={
"aliases": [
httpPrefix+'://'+domain+'/users/inbox'
],
"links": [
{
"href": httpPrefix+'://'+domain+'/users/inbox',
"rel": "self",
"type": "application/activity+json"
}
],
"subject": 'acct:inbox@'+domain
}
if not wfRequest:
print('Unable to webfinger '+nickname+'@'+domain)
sys.exit()