forked from indymedia/epicyon
Tidying
parent
dcd413c99a
commit
39c6c42549
|
@ -3642,7 +3642,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
self.server.useBlurHash, \
|
||||
fields['replyTo'],fields['replyTo'], \
|
||||
fields['subject'], \
|
||||
self.server.debug,fields['schedulePost'], \
|
||||
True,fields['schedulePost'], \
|
||||
fields['eventDate'], \
|
||||
fields['eventTime'], \
|
||||
fields['location'])
|
||||
|
@ -3830,7 +3830,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
|
||||
# Note sending new posts needs to be synchronous, otherwise any attachments
|
||||
# can get mangled if other events happen during their decoding
|
||||
print('Creating new post: '+newPostThreadName)
|
||||
print('Creating new post from: '+newPostThreadName)
|
||||
self._receiveNewPostProcess(authorized,postType,path,headers,length,postBytes,boundary)
|
||||
return pageNumber
|
||||
|
||||
|
|
7
posts.py
7
posts.py
|
@ -430,7 +430,9 @@ def savePostToBox(baseDir: str,httpPrefix: str,postId: str, \
|
|||
|
||||
if not postId:
|
||||
statusNumber,published = getStatusNumber()
|
||||
postId=httpPrefix+'://'+originalDomain+'/users/'+nickname+'/statuses/'+statusNumber
|
||||
postId= \
|
||||
httpPrefix+'://'+originalDomain+'/users/'+nickname+ \
|
||||
'/statuses/'+statusNumber
|
||||
postJsonObject['id']=postId+'/activity'
|
||||
if postJsonObject.get('object'):
|
||||
if isinstance(postJsonObject['object'], dict):
|
||||
|
@ -1019,7 +1021,8 @@ def createDirectMessagePost(baseDir: str,
|
|||
eventDate=None,eventTime=None,location=None) -> {}:
|
||||
"""Direct Message post
|
||||
"""
|
||||
mentionedPeople=getMentionedPeople(baseDir,httpPrefix,content,domain,debug)
|
||||
mentionedPeople= \
|
||||
getMentionedPeople(baseDir,httpPrefix,content,domain,debug)
|
||||
if debug:
|
||||
print('mentionedPeople: '+str(mentionedPeople))
|
||||
if not mentionedPeople:
|
||||
|
|
Loading…
Reference in New Issue