Send update to followers

master
Bob Mottram 2019-08-22 17:21:21 +01:00
parent 95218f9945
commit 323fec6794
1 changed files with 1 additions and 2 deletions

View File

@ -2263,8 +2263,6 @@ class PubServer(BaseHTTPRequestHandler):
# also copy to the actors cache and personCache in memory # also copy to the actors cache and personCache in memory
storePersonInCache(self.server.baseDir,actorJson['id'],actorJson,self.server.personCache) storePersonInCache(self.server.baseDir,actorJson['id'],actorJson,self.server.personCache)
actorCacheFilename=self.server.baseDir+'/cache/actors/'+actorJson['id'].replace('/','#')+'.json' actorCacheFilename=self.server.baseDir+'/cache/actors/'+actorJson['id'].replace('/','#')+'.json'
pprint(actorJson)
print('*************************updating actor cache: '+actorCacheFilename)
with open(actorCacheFilename, 'w') as fp: with open(actorCacheFilename, 'w') as fp:
commentjson.dump(actorJson, fp, indent=4, sort_keys=False) commentjson.dump(actorJson, fp, indent=4, sort_keys=False)
# send actor update to followers # send actor update to followers
@ -2272,6 +2270,7 @@ class PubServer(BaseHTTPRequestHandler):
'type': 'Update', 'type': 'Update',
'actor': actorJson['id'], 'actor': actorJson['id'],
'to': ['https://www.w3.org/ns/activitystreams#Public'], 'to': ['https://www.w3.org/ns/activitystreams#Public'],
'cc': [actorJson['id']+'/followers'],
'object': actorJson 'object': actorJson
} }
self.postToNickname=nickname self.postToNickname=nickname