forked from indymedia/epicyon
Message id
parent
5ea0306973
commit
7416a8a6e3
|
@ -1998,6 +1998,10 @@ def individualPostAsHtml(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
if isPersonSnoozed(baseDir,nickname,domain,postActor):
|
if isPersonSnoozed(baseDir,nickname,domain,postActor):
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
|
messageId=''
|
||||||
|
if postJsonObject.get('id'):
|
||||||
|
messageId=postJsonObject['id'].replace('/activity','')
|
||||||
|
|
||||||
messageIdStr=''
|
messageIdStr=''
|
||||||
if messageId:
|
if messageId:
|
||||||
messageIdStr=';'+messageId
|
messageIdStr=';'+messageId
|
||||||
|
@ -2104,9 +2108,6 @@ def individualPostAsHtml(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
# single user instance
|
# single user instance
|
||||||
actorNickname='dev'
|
actorNickname='dev'
|
||||||
actorDomain,actorPort=getDomainFromActor(postActor)
|
actorDomain,actorPort=getDomainFromActor(postActor)
|
||||||
messageId=''
|
|
||||||
if postJsonObject.get('id'):
|
|
||||||
messageId=postJsonObject['id'].replace('/activity','')
|
|
||||||
|
|
||||||
displayName=getDisplayName(baseDir,postActor,personCache)
|
displayName=getDisplayName(baseDir,postActor,personCache)
|
||||||
if displayName:
|
if displayName:
|
||||||
|
|
Loading…
Reference in New Issue