forked from indymedia/epicyon
New post context
parent
7bb41b4414
commit
426873d0a9
14
posts.py
14
posts.py
|
@ -576,6 +576,16 @@ def createPostBase(baseDir: str,nickname: str, domain: str, port: int, \
|
|||
"name": location
|
||||
})
|
||||
|
||||
postContext=[
|
||||
'https://www.w3.org/ns/activitystreams',
|
||||
{
|
||||
'Hashtag': 'as:Hashtag',
|
||||
'sensitive': 'as:sensitive',
|
||||
'toot': 'http://joinmastodon.org/ns#',
|
||||
'votersCount': 'toot:votersCount'
|
||||
}
|
||||
]
|
||||
|
||||
if not clientToServer:
|
||||
actorUrl=httpPrefix+'://'+domain+'/users/'+nickname
|
||||
|
||||
|
@ -599,7 +609,7 @@ def createPostBase(baseDir: str,nickname: str, domain: str, port: int, \
|
|||
time.sleep(1)
|
||||
tries+=1
|
||||
newPost = {
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"@context": postContext,
|
||||
'id': newPostId+'/activity',
|
||||
'capability': capabilityIdList,
|
||||
'type': 'Create',
|
||||
|
@ -644,7 +654,7 @@ def createPostBase(baseDir: str,nickname: str, domain: str, port: int, \
|
|||
mediaType,imageDescription,useBlurhash)
|
||||
else:
|
||||
newPost = {
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"@context": postContext,
|
||||
'id': newPostId,
|
||||
'type': 'Note',
|
||||
'summary': summary,
|
||||
|
|
Loading…
Reference in New Issue